首页 > 其他 > 详细

properties文件路径的读取

时间:2015-08-04 23:23:13      阅读:386      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!