java后台中使用resources中的properties文件

每次用总是忘,在这里记录一下。

properties文件放在src/main/resources中,访问代码:

/**

* 从properties中读取属性数据

* @param tag

* @return

*/

public static String getFromProperties(String tag)

{

//读取属性数据

Properties props = new Properties();

String res="";

{

try {

props.load(Wechat.class.getClassLoader().getResourceAsStream(propertiesAdd));

res=props.getProperty(tag);

} catch (FileNotFoundException e) {

e.printStackTrace();

System.exit(-1);

} catch (IOException e) {

System.exit(-1);

}

}

return res;

}

你可能感兴趣的:(java后台中使用resources中的properties文件)