Java读取properties文件的方法比较多,网上我最多的文章是“Java读取properties文件的六种方法”,我看了好多的文章,在读到“博客之星-熔岩”的“Java读取properties文件的思考”这片文章的时候,感觉写的很好,忍不住也些点日志记录下来,在最常用的读取properties文件的方式--->“通过java.lang.Class类的getResourceAsStream(String name) 方法来实现”,
- InputStream in = getClass().getResourceAsStream("资源Name");
这句代码有一些问题,那就是getClass()调用的时候默认省略了this!我们都知道,this是不能在static(静态)方法或者static块中使用的,原因是static类型的方法或者代码块是属于类本身的,不属于某个对象,而this本身就代表当前对象,而静态方法或者块调用的时候是不用初始化对象的。问题是:假如我不想让某个类有对象,那么我会将此类的默认构造方法设为私有,当然也不会写别的共有的构造方法。并且我这个类是工具类,都是静态的方法和变量,我要在静态块或者静态方法中获取properties文件,这个方法就行不通了。
那怎么办呢?其实这个类就不是这么用的,他仅仅是需要获取一个Class对象就可以了,那还不容易啊--取所有类的父类Object,用Object.class难道不比你的用你正在写类自身方便安全吗
?呵呵,下面给出一个例子,以方便交流。(注:以上的话是摘自于熔岩大哥的话),
- import java.util.Properties;
- import java.io.InputStream;
- import java.io.IOException;
- /**
- * 读取Properties文件的例子
- * File: TestProperties.java
- * User: leizhimin
- * Date: 2008-2-15 18:38:40
- */
- public final class TestProperties {
- private static String param1;
- private static String param2;
- static {
- Properties prop = new Properties();
- InputStream in = Object.class.getResourceAsStream("/test.properties");
- try {
- prop.load(in);
- param1 = prop.getProperty("initYears1").trim();
- param2 = prop.getProperty("initYears2").trim();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- /**
- * 私有构造方法,不需要创建对象
- */
- private TestProperties() {
- }
- public static String getParam1() {
- return param1;
- }
- public static String getParam2() {
- return param2;
- }
- public static void main(String args[]){
- System.out.println(getParam1());
- System.out.println(getParam2());
- }
- }
- public static void main(String[] args) {
- //InputStream inputStream = Object.class.getResourceAsStream("/ipConfig.properties");
- InputStream inputStream2 = PropertyTest.class.getResourceAsStream("/ipConfig.properties");
- InputStream inputStream3 = PropertyTest.class.getClassLoader().getResourceAsStream("ipConfig.properties");
- Properties p = new Properties();
- try {
- p.load(inputStream);
- inputStream.close();
- } catch (IOException e1) {
- e1.printStackTrace();
- }
- System.out.println("ip:" + p.getProperty("ip") + "port:"
- + p.getProperty("port"));
- }
- private static final String BUNDLE_NAME = "com.xxx.cs.mm.service.messages";
- messages.properties文件和Messages类在同一个包下,包名:com.xxx.cs.mm.service
- private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
- ublic static String getString(String key) {
- try {
- return RESOURCE_BUNDLE.getString(key);
- } catch (MissingResourceException e) {
- return ‘!‘ + key + ‘!‘;
- }
- }