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

properties文件路径的读取

时间:2015-08-04 23:26:19      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:

System.out.println(System.getProperty("user.dir"));  //这个是去工程的绝对路径的
  System.out.println(Thread.currentThread().getContextClassLoader().getResource(""));//这个是去当前classpath的uri的!
  new Properties().load(new FileInputStream("test.properties"));//这里说明test文件在工程的跟目录下!

new Properties().load(new FileInputStream("test/test.properties"));//说明,在工程底下的test的文件夹底下的文件test.properties!
  ResourceBundle rs = ResourceBundle.getBundle("org.hello");


properties文件路径的读取

标签:

原文地址:http://my.oschina.net/cheeryzxh007/blog/487801

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