首先创建个类FileDirectoryConfig类,需要读取资源文件时,就可以调用这个类.
下面是资源文件globalMessages.properties
最后是测试类
public class FileDirectoryConfig {
// value是资源文件中的值,key是资源文件中的键,key需要用户输入
private String value = null;
// props是存储键值对的properties对象
private Properties props = new Properties();
// 通过构造方法来读取资源文件str,用户可以自定义需要读取的资源文件
public FileDirectoryConfig(String str) throws IOException {
InputStream is = FileDirectoryConfig.class
.getResourceAsStream(str);
props.load(is);
}
// 根据传入的key来读取value
public String getValue(String key) {
value = props.getProperty(key);
return value;
}
}
下面是资源文件globalMessages.properties
a = A
b = B
c = C
A = a
B = b
C = c
最后是测试类
public class Test {
public static void main(String[] args) throws IOException {
FileDirectoryConfig fileDirectoryConfig = new FileDirectoryConfig(
"globalMessages.properties");
String value = fileDirectoryConfig.getValue("a");
System.out.println("key = a , value = " + value);
String value2 = fileDirectoryConfig.getValue("B");
System.out.println("key = B , value = " + value2);
}
}