linux下也是文件系統,同樣的也可以使用file對象來讀取配置文件信息,示例如下:
import java.io.*;
public class FileToString {
public static String readFile(String fileName) {
String output = "";
File file = new File(fileName);//建立file對象
if(file.exists()){//判斷是否存在
if(file.isFile()){//判斷是否文件
try{
BufferedReader input = new BufferedReader (new FileReader(file));
StringBuffer buffer = new StringBuffer();
String text;
while((text = input.readLine()) != null)
buffer.append(text +"/n");//讀取內容進行拼接。
output = buffer.toString();
}
catch(IOException ioException){
System.err.println("File Error!");
}
}
else if(file.isDirectory()){//是否為文件夾
String[] dir = file.list();
output += "Directory contents:/n";
for(int i=0; i<dir.length; i++){
output += dir[i] +"/n";
}
}
}
else{
System.err.println("Does not exist!");
}
return output;
}
}
② 怎樣查看linux的dhcp配置文件
一般情況下,Linux中的配置文件存放在/etc下面
DHCP的配置文件在 /etc/dhcpd.conf 或者 /etc/dhcp/dhcpd.conf
使用vim 打開就可以編輯。
③ linux鐨.sh鏂囦歡
Linux緋葷粺涓嬪備綍榪愯.sh鏂囦歡錛
1.濡傛灉filename.sh鏂囦歡鏈夋墽琛屾潈闄./filename.sh2.濡傛灉filename.sh鏂囦歡娌℃湁鎵ц屾潈闄恠hfilename.sh
鎵╁睍鍚嶄負sh鏄浠涔堢紪璇戝櫒緙栧啓鐨勪唬鐮侊紵
鏄痩inux/unix涓嬬殑shell鑴氭湰鏂囦歡錛屾槸綰鏂囨湰鏂囦歡銆
鐢ㄤ換浣曟枃鏈緙栬緫鍣ㄩ兘鍙浠ユ墦寮銆linux鍛戒護涓鐨剆h鏄浠涔堟剰鎬濓紵
Bourneshell(sh)鍙浠ヨ存槸涓涓騫沖彴.鐩存帴閫氬悜鍐呮牳鐨.浣犺緭鍏SH絳変簬鏀瑰彉浜嗕綘鐨剆helllinux榛樿ょ殑shell鏄痓ash浣犳敼鎴愪簡,bourneshell浣犺緭浜哹ash灝辨敼鍥炴潵鍟.$絎︿唬琛ㄦ櫘閫氱敤鎴.
linuxsh鏀句粈涔堜綅緗錛
榪欐槸shell鑴氭湰鏂囦歡錛岃繖涓鏄娌℃湁鍥哄畾鐨勭洰褰曠殑錛屼絾鏄鍙浠ヤ嬌鐢ㄦ煡鎵懼懡浠ゆ壘鍒扮浉搴旂殑鏂囦歡鐨勶紝鍙浠ヤ嬌鐢╨ocate鎴栬協ind鍛戒護鏌ユ壘鏂囦歡錛
linuxshell璇誨彇涓涓閰嶇疆鏂囦歡騫惰幏鍙栧叾涓鐨勫叏閮ㄥ唴瀹癸紝鎬ワ紵
涓嬮潰鏄璇誨彇閰嶇疆鏂囦歡錛屼綔涓哄彉閲忔樉紺哄嚭鏉ワ紝瀹炰緥濡備笅錛$catboot.inipath='/data/source'username='myuser'password='mypassword'$cattest.sh#!/bin/sheval`cat./boot.ini`echo"$username"echo"$path"echo"$password"$./test.shmyuser/data/sourcemypassword
④ Linux下如何找到FTP伺服器的配置文件
1、Linux系統下vsftp安裝。
⑤ linux php配置文件在哪
1、找到linux php配置文件具體的的方法首先是可以打開終端輸入find命令即可顯示出php配置文件的路版徑:
⑥ linux中的.conf文件是怎麼被讀取的
init.d下的都是開機時啟動的後台進程執行腳本,腳本配置里會有執行程序版的定義,這個執權行的程序就會去讀取相關配置文件。比如你說的/etc/init.d/dnsmasq腳本里定義的dnsmasq程序運行後就會去讀取/etc/dnsmasq.conf文件.