java中讀取配置文件

如果Java web項目,項目運行於tomcat或其餘容器時,能夠使用下面方式來獲取文件的輸入流java

一、當屬性文件放在src下面時web

InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream("test.properties");  
Properties p = new Properties();  
p.load(is);  

二、當屬性文件放在某個包下面時,如:com.test.configapi

InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream("test.properties");  
Properties p = new Properties();  
p.load(is);  

如果java項目,則使用下面方法讀取屬性文件tomcat

InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream("com/test/config/test.properties");  
Properties p = new Properties();  
p.load(is);  

若屬性文件放在某個包下面,則使用com/test/config/test.properties便可eclipse

 

*.properties格式的文件在Java中用的仍是挺多的,能夠說寫java項目時只要有配置數據基本都會使用*.properties來作,這也是java官方支持的一種配置文件,jdk提供了現成的api來操做。編輯器

在eclipse中使用properties格式的文件時,默認會將properties文件中的中文轉成asc碼,這時咱們能夠給eclipse安裝一個properties編輯器插件就能夠支持中文顯示了。.net

地址:http://blog.csdn.net/abc_key/article/details/46511259 ;插件

相關文章
相關標籤/搜索