码迷,mamicode.com
首页 > Web开发 > 详细

Websphere中获取项目下.properties路径

时间:2017-05-26 15:55:51      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:fileinput   icon   this   ring   代码   strong   bar   config   source   

一:如果容器为Websphere,那下面为红色的地方不能加"/",如果为tomcat,则加上"/",

 

Java代码  技术分享
  1. String  path = this.class.getResource("").getPath()+"config.properties";  
  2.   
  3. Properties properties= new Properties();  
  4.   
  5. properties.load(new FileInputStream(new File(path )));  

 

如果你的config.properties在某个包下面,则把包同时带上,如:config.properties在com.df.util包下,则为:

Java代码  技术分享
  1. String  path = this.class.getResource("").getPath()+"com/df/util/config.properties";  
  2.   
  3. Properties properties= new Properties();  
  4.   
  5. properties.load(new FileInputStream(new File(path )));  

 

二:如果你的项目中用到了spring,那么也可这样获取,

Java代码  技术分享
  1. import org.springframework.core.io.Resource;  
  2.   
  3. import org.springframework.core.io.ClassPathResource;  
  4.   
  5. Resource resource = new ClassPathResource("config.properties");  //直接读取src下的,位于class文件之下
  6.   
  7. Properties  properties= new Properties();  
  8.   
  9. InputStream in = resource.getInputStream();  
  10.   
  11. properties.load(in);  

  

 

 

 

Websphere中获取项目下.properties路径

标签:fileinput   icon   this   ring   代码   strong   bar   config   source   

原文地址:http://www.cnblogs.com/zqyanywn/p/6908650.html

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