JAVA读取配置文件例子
类别: JSP教程
import java.util.*;
import java.io.*;
public class Test1 {
public String getPara(String fileName) {
Properties prop= new Properties();
try {
InputStream is = getClass().getResourceAsStream(fileName);
prop.load(is);
if(is!=null) is.close();
}
catch(Exception e) {
System.out.println(e+"file "+fileName+" not found");
}
return prop.getProperty("file_name");
}
public static void main(String[] args) {
Test1 test = new Test1();
System.out.println(test.getPara("db.property"));
}
}
import java.io.*;
public class Test1 {
public String getPara(String fileName) {
Properties prop= new Properties();
try {
InputStream is = getClass().getResourceAsStream(fileName);
prop.load(is);
if(is!=null) is.close();
}
catch(Exception e) {
System.out.println(e+"file "+fileName+" not found");
}
return prop.getProperty("file_name");
}
public static void main(String[] args) {
Test1 test = new Test1();
System.out.println(test.getPara("db.property"));
}
}
- 上一篇: JAVA中对文件的读写操作之比较
- 下一篇: 一个读取文件和子目录列表的程序
-= 资 源 教 程 =-
文 章 搜 索