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

读取配置文件中的值

时间:2016-09-18 19:18:13      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

/**
* 加载配置文件
* @author
*
*/
public class ConfigUtil {
//实例属性(对象属性)
private static Properties ps = new Properties();

static{
/*
* 在加载类的同时,告诉类加载器,将此文件加载到内存
*/
InputStream in = ConfigUtil.class.getClassLoader().getResourceAsStream("db.properties");
try {
ps.load(in);
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 根据key获取文件当中的value
*
*/
public static String getValue(String key){
return ps.getProperty(key);
}

public static void main(String[] args) {

}
}

读取配置文件中的值

标签:

原文地址:http://www.cnblogs.com/hy168/p/5882685.html

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