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

读取properties文件

时间:2018-10-12 23:52:11      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:alt   classpath   ext   文件   http   size   分享图片   let   img   

  读取 配置文件的两个方法

1.  xxx.class.getClassLoader() .getResourceAsStream(xxxx) 

 

1 Properties p  =new Properties();
2         p.load(Test.class.getClassLoader()
3                 .getResourceAsStream
4                 ("com/springFactory/spring.properties"));;
5         // properties文件放在了  src 目录  
6         // 编译后,properties 文件会在 bin目录(即classpath)
7         
8         String  vehicleTypeName  = p.getProperty("VehicleType");
9         System.out.println(vehicleTypeName);

技术分享图片

 

 

2.

InputStream in = Thread.currentThread().

getContextClassLoader().
getResourceAsStream("jdbc.properties");
p.load(in);

 技术分享图片

 

读取properties文件

标签:alt   classpath   ext   文件   http   size   分享图片   let   img   

原文地址:https://www.cnblogs.com/kwaitfort/p/9780830.html

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