Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1527891
  • 博文数量: 329
  • 博客积分: 2773
  • 博客等级: 少校
  • 技术积分: 4219
  • 用 户 组: 普通用户
  • 注册时间: 2012-02-24 14:17
个人简介

淡定从容,宁静致远

文章分类

全部博文(329)

文章存档

2016年(4)

2015年(50)

2014年(68)

2013年(45)

2012年(162)

分类: Windows平台

2015-11-10 10:14:42

private static Properties properties;
static {
try {
properties = new Properties();
String filePath = System.getProperty("user.dir") + "/config/config.properties";
InputStream in = new BufferedInputStream(new FileInputStream(filePath));
properties.load(in);
} catch (IOException e) {
e.printStackTrace();
}
}


public static String getProperty(String Key) {
return properties.getProperty(Key);
}
阅读(2630) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~