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

用过的这些方法—读取properties配置文件

时间:2014-10-03 18:35:35      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   文件   sp   div   c   on   

代码写得多了,对于同一功能的代码也会遇到多种实现,权且记录一下。

  读取properties文件

  1.使用ResourceBundle加载

    ResourceBundle bundle = ResourceBundle.getBundle("MyResource",Locale.getDefault()); //读取工程类路径下的 MyResource.properties文件,当然也可以为其他名字,例如:conf.properties
    String name = bundle.getString("name"); 
    System.out.println(name);

 

  2.使用Properties加载

     Properties prop = new Properties();
   prop.load(new FileInputStream(new File("conf/config.properties")));  //注意:此方法加载文件路径
   //
prop.load(XX.class.getClassLoader().getResourceAsStream("conf.properties"))); //注意:此方法读取工程类路径下 的conf.properties文件
   String name = prop.getProperty("name");
   System.out.println(name);

 

  注意:简单测试了一下,上面两种方式效率类似

 

  3.自己来解析文件,读取配置,代码暂略吧..闲了再写

 

用过的这些方法—读取properties配置文件

标签:style   blog   color   使用   文件   sp   div   c   on   

原文地址:http://www.cnblogs.com/baby-bear/p/4005124.html

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