码迷,mamicode.com
首页 > 其他好文 > 详细

静态读配置文件

时间:2015-02-11 12:20:14      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

/**
* 读配置文件
* @param configPath 配置文件路径
* @param key
* @return
*/
public static String getPropertyFromConfigByKey(String configPath, String key){
Properties pros=new Properties();
InputStream is=Utils.class.getResourceAsStream(configPath);
try {
pros.load(is);
} catch (IOException e) {
e.printStackTrace();
}
String iispath=pros.getProperty(key);
return iispath;
}

 

静态读配置文件

标签:

原文地址:http://www.cnblogs.com/xuhj/p/4285539.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!