内容First.properties
:
name=elango
country=india
phone=12345
我想country
从更改india
为america
。这是我的代码:
import java.io.*;
public class UpdateProperty
{
public static void main(String args[]) throws Exception
{
FileOutputStream out = new FileOutputStream("First.properties");
FileInputStream in = new FileInputStream("First.properties");
Properties props = new Properties();
props.load(in);
in.close();
props.setProperty("country", "america");
props.store(out, null);
out.close();
}
}
输出内容First.properties
:
country=america
其他属性被删除。我想更新一个特定的属性值,而不删除其他属性。