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

关于读取properties文件路径问题

时间:2018-08-15 12:01:44      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:读取   context   问题   路径问题   ini   目录   contex   put   let   

 1 1.方法一 
 2 InputStream fis =TestProperties.class.getClassLoader().getResourceAsStream(“init.properties”)
 3 
 4 2.方法二(要求TestProperties和init.properties在同一目录下) 
 5 InputStream fis =TestProperties.class.getResourceAsStream(“init.properties”)
 6 
 7 3.方法三,对于Web工程也可以这样。 
 8 先获取ServletContext,然后 
 9 
10 InputStream in=context.getResourceAsStream(“/WEB-INF/classes/init.properties”);

 

关于读取properties文件路径问题

标签:读取   context   问题   路径问题   ini   目录   contex   put   let   

原文地址:https://www.cnblogs.com/stay-hungry/p/9480475.html

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