1、配置文件(project.properties ):
xzql.refFilePath=www.baidu.com
2、读取properties文件:
try{
/* 创建输入流 */
InputStream is = this.getClass().getClassLoader().getResourceAsStream("project.properties");
Properties p = new Properties();
try {
p.load(is); //Properties 对象已生成,包括文件中的数据
}catch(IOException e){
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
String refFp=p.getProperty("xzql.refFilePath");