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;
-
-
-
-
-
-
-
-
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 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"));
-
}
对于以上的配置文件的路径名,有一个容易忽视的问题,那就是当你用Object.class.getClassLoader().get...的时候,是都可以不用要加“/”,但是不用getClassLoader().的时候是不行的,这是什么原因呢?由于这个配置文件是放在项目的src下的,在object加载的时候要加上“/”。如果是将这个配置文件拷贝到类得同包下,则不需要加,如果是用下面的方式读取配置文件:
-
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 + '!';
-
}
-
}
则必须将配置文件放到和类文件同包下。
转载自:http://zheng0324jian.iteye.com/blog/1176932
阅读(1167) | 评论(0) | 转发(0) |