读取properties属性文件

Posted SaraMorning

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取properties属性文件相关的知识,希望对你有一定的参考价值。

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属性文件的主要内容,如果未能解决你的问题,请参考以下文章

java中Properties类及读取properties中属性值

Spring中属性文件properties的读取与使用

ResourceBundle类读取properties文件

读取properties文件并获取属性值

什么是properties文件

java 读取Properities 文件