你可以试试这个方法,
private static void setProperty(String key,String value) {
Properties props = new Properties();
InputStream in;
try {
in = new BufferedInputStream(new FileInputStream("ApplicationResource.properties "));
props.load(in);
in.close();
} catch (FileNotFoundException e) {
}
props.setProperty(key,value);
}