java读取properties

时间:2023-03-08 17:16:51

Java读取properties文件的方法比较多,网上我最多的文章是“Java读取properties文件的六种方法”,我看了好多的文章,在读到“博客之星-熔岩”的“Java读取properties文件的思考”这片文章的时候,感觉写的很好,忍不住也些点日志记录下来,在最常用的读取properties文件的方式--->“通过java.lang.Class类的getResourceAsStream(String name) 方法来实现”,

  1. InputStream in = getClass().getResourceAsStream("资源Name");

这句代码有一些问题,那就是getClass()调用的时候默认省略了this!我们都知道,this是不能在static(静态)方法或者static块中使用的,原因是static类型的方法或者代码块是属于类本身的,不属于某个对象,而this本身就代表当前对象,而静态方法或者块调用的时候是不用初始化对象的。问题是:假如我不想让某个类有对象,那么我会将此类的默认构造方法设为私有,当然也不会写别的共有的构造方法。并且我这个类是工具类,都是静态的方法和变量,我要在静态块或者静态方法中获取properties文件,这个方法就行不通了。

      那怎么办呢?其实这个类就不是这么用的,他仅仅是需要获取一个Class对象就可以了,那还不容易啊--取所有类的父类Object,用Object.class难道不比你的用你正在写类自身方便安全吗 ?呵呵,下面给出一个例子,以方便交流。(注:以上的话是摘自于熔岩大哥的话),
  1. import java.util.Properties;
  2. import java.io.InputStream;
  3. import java.io.IOException;
  4. /**
  5. * 读取Properties文件的例子
  6. * File: TestProperties.java
  7. * User: leizhimin
  8. * Date: 2008-2-15 18:38:40
  9. */
  10. public final class TestProperties {
  11. private static String param1;
  12. private static String param2;
  13. static {
  14. Properties prop = new Properties();
  15. InputStream in = Object.class.getResourceAsStream("/test.properties");
  16. try {
  17. prop.load(in);
  18. param1 = prop.getProperty("initYears1").trim();
  19. param2 = prop.getProperty("initYears2").trim();
  20. } catch (IOException e) {
  21. e.printStackTrace();
  22. }
  23. }
  24. /**
  25. * 私有构造方法,不需要创建对象
  26. */
  27. private TestProperties() {
  28. }
  29. public static String getParam1() {
  30. return param1;
  31. }
  32. public static String getParam2() {
  33. return param2;
  34. }
  35. public static void main(String args[]){
  36. System.out.println(getParam1());
  37. System.out.println(getParam2());
  38. }
  39. }

以上是他的代码,在我写的程序中

  1. public static void main(String[] args) {
  2. //InputStream inputStream = Object.class.getResourceAsStream("/ipConfig.properties");
  3. InputStream inputStream2 = PropertyTest.class.getResourceAsStream("/ipConfig.properties");
  4. InputStream inputStream3 = PropertyTest.class.getClassLoader().getResourceAsStream("ipConfig.properties");
  5. Properties p = new Properties();
  6. try {
  7. p.load(inputStream);
  8. inputStream.close();
  9. } catch (IOException e1) {
  10. e1.printStackTrace();
  11. }
  12. System.out.println("ip:" + p.getProperty("ip") + "port:"
  13. + p.getProperty("port"));
  14. }

对于以上的配置文件的路径名,有一个容易忽视的问题,那就是当你用Object.class.getClassLoader().get...的时候,是都可以不用要加“/”,但是不用getClassLoader().的时候是不行的,这是什么原因呢?由于这个配置文件是放在项目的src下的,在object加载的时候要加上“/”。如果是将这个配置文件拷贝到类得同包下,则不需要加,如果是用下面的方式读取配置文件:

  1. private static final String BUNDLE_NAME = "com.xxx.cs.mm.service.messages";
  2. messages.properties文件和Messages类在同一个包下,包名:com.xxx.cs.mm.service
  3. private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
  4. ublic static String getString(String key) {
  5. try {
  6. return RESOURCE_BUNDLE.getString(key);
  7. } catch (MissingResourceException e) {
  8. return '!' + key + '!';
  9. }
  10. }

则必须将配置文件放到和类文件同包下。