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

加载properties配置文件

时间:2018-02-06 12:53:26      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:pos   names   elements   except   enum   dex   配置文件   lock   getpath   

配置文件的路径为根路径:

//获取该配置文件的相对路径

String path = SysTemplate.class.getClassLoader().getResource("generator.properties").getPath();

File file = new File(path);
Properties pps = new Properties();
pps.load(new FileInputStream(file));
Enumeration enum1 = pps.propertyNames();//得到配置文件的名字
while(enum1.hasMoreElements()) {
String strKey = (String) enum1.nextElement();
String strValue = pps.getProperty(strKey);
System.out.println(strKey + "=" + strValue);
}

} catch (FileNotFoundException e) {
System.out.println("文件找不到異常");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

加载properties配置文件

标签:pos   names   elements   except   enum   dex   配置文件   lock   getpath   

原文地址:https://www.cnblogs.com/df1151112630/p/8421586.html

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