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

读取properties属性文件

时间:2016-06-21 18:58:50      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

1、通过类加载器加载

InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("Chapter8/test.properties"); 
Properties p = new Properties();  
p.load(inputStream );

2、通过文件系统加载

InputStream inputStream = new FileInputStream("Chapter8/test.properties"); 

以下是获取当前工程路径的方法:

public static void main(String[] args) {
	// TODO Auto-generated method stub

	path[0] = Thread.currentThread().getContextClassLoader()
				.getResource("Chapter8/test.properties").getPath();
	path[1] = this.getClass().getClassLoader()
				.getResource("Chapter8/test.properties").getPath();
	path[2] = ClassLoader.getSystemResource("Chapter8/test.properties")
				.getPath();
}

  

读取properties属性文件

标签:

原文地址:http://www.cnblogs.com/SaraMoring/p/5604635.html

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