java.util.properties读取文件

//得到properties对象

Properties properties=new Properties();

 

//得到项目路径

String relativelyPath=System.getProperty("user.dir");

System.out.println(relativelyPath+"\\resours\\configTask.properties");//拼接你要读取的文件

//得到项目中的bin的路径

// String path = Thread.currentThread().getContextClassLoader().getResource("").getPath();

// System.out.println(path+"configTask.properties");

//读文件

FileInputStream fileStream=null;

try {

   fileStream=new FileInputStream(relativelyPath+"\\src\\resours\\configTask.properties");

   properties.load(fileStream);//从输入流中读取属性列表(键和元素对)。

} catch (FileNotFoundException e) {

e.printStackTrace();

}finally{

fileStream.close();

}

String string=properties.getProperty("EpgTimerTask.Export.DaySpan");

System.out.println(string);

你可能感兴趣的:(properties读取文件)