以下代码似乎不起作用,但我确信它已经习惯了。
public static void main(String args[])
{
Properties currentProperties = System.getProperties();
Properties p = new Properties(currentProperties);
System.setProperties(p);
}
在构造新的Properties对象时,不会添加旧属性,因此在调用System.setProperties时,它具有擦除所有系统属性的效果。
在Oracle网站上有一个与此类似的代码示例也很奇怪。
https://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html
有人可以解释为什么这段代码不起作用?应该用什么代替这个代码呢?
我正在使用Java 1.7_75 64-0位。
由于 富
答案 0 :(得分:4)
看看Java docs。建构者
public Properties(Properties defaults)
如上所述
使用指定的默认值创建一个空属性列表。
创建一个新的Properties实例,但不使用input参数中的属性对其进行初始化,它只为此新实例设置默认值。
答案 1 :(得分:0)
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Properties;
public class App {
public static void main(String[] args) {
Properties prop = new Properties();
OutputStream output = null;
try {
output = new FileOutputStream("config.properties");
// set the properties value
prop.setProperty("database", "localhost");
prop.setProperty("dbuser", "user");
prop.setProperty("dbpassword", "password");
// save properties to project root folder
prop.store(output, null);
} catch (IOException io) {
io.printStackTrace();
} finally {
if (output != null) {
try {
output.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
就我而言,这是创建和保存属性的唯一方法。