java:如何将值添加到属性文件并在程序中访问它们

时间:2011-10-11 10:37:09

标签: java

在我的eclipse项目中,我在许多java类文件,几个jsps以及context.xml文件中都有ip地址字符串变量。我想创建一个类型的.properties文件,并将此IP地址声明为键值对,并从该特定文件中的所有类访问。如何实现此目的?

此致 TT

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:0)

使用类似的东西:

// Read properties file.
Properties properties = new Properties();
try {
    properties.load(new FileInputStream("filename.properties"));
    String value = properties.getProperty("propertyKey");
} catch (IOException e) {
}