首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

web工程停获取properties文件

2013-10-05 
web工程下获取properties文件String propertiesPath getClass().getClassLoader().getResource().getF

web工程下获取properties文件
String propertiesPath = getClass().getClassLoader().getResource("").getFile();
propertiesPath = propertiesPath.substring(1, propertiesPath.length());
//windows下
InputStream in = new FileInputStream(new File(propertiesPath + "/resource.properties"));
//linux下
//InputStream in = new FileInputStream(new File("/opt/apache-tomcat-6.0.26/webapps/IMS/WEB-INF/classes/resource.properties"));
Properties prop = new Properties();
prop.load(in);
Enumeration e = prop.propertyNames();
while(e.hasMoreElements()){
  String propKey = (String)e.nextElement();
  String propValue = prop.getProperty(propKey);
  propertiesMap.put(propKey, propValue);
}
in.close();

热点排行