在我的eclipse项目中,我在许多java类文件,几个jsps以及context.xml文件中都有ip地址字符串变量。我想创建一个类型的.properties文件,并将此IP地址声明为键值对,并从该特定文件中的所有类访问。如何实现此目的?
此致 TT
答案 0 :(得分:2)
java.util.Properties.store(..)
保存java.util.Properties.load(..)
加载答案 1 :(得分:0)
使用类似的东西:
// Read properties file.
Properties properties = new Properties();
try {
properties.load(new FileInputStream("filename.properties"));
String value = properties.getProperty("propertyKey");
} catch (IOException e) {
}