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文件.