我有以下代码必须向.properties文件中的现有属性添加新值,如果该属性不存在 - 创建它。
public String saveProperties(ArrayList<Property> properties, String customerId){
final String userPropFieldName = "users." + customerId + ".rules";
try{
PropertiesConfiguration props = new PropertiesConfiguration("/home/mikhail/bzrrep/DLP/DLPServer/src/main/resources/rules.properties");
for (Property property: properties){
String fieldName = "rules." + property.getName() + "." + property.getType();
String[] values = (property.getValue()).split("\\,");
for (String word: values){
System.out.print(word + " ");
}
if (util.exist(fieldName, props)){
props.setProperty(fieldName, values);
} else {
props.addProperty(fieldName, values);
}
String[] userProperties = props.getStringArray(userPropFieldName);
if (property.getAccepted()){
userProperties = util.addNewValue(userProperties, fieldName);
} else {
userProperties = util.removeValue(userProperties, fieldName);
}
props.setProperty(userPropFieldName, userProperties);
}
}catch (ConfigurationException e){
e.printStackTrace();
}
return "Saved";
}
我用调试器运行它并且所有值都正确,我的意思是,在数组中有正确的属性名称和正确的值,因此,看到它出现了添加或设置新值,但最后我没有在属性文件中看到任何更改。
答案 0 :(得分:1)
将修改后的属性保存到文件
props.save();
了解详情:http://commons.apache.org/proper/commons-configuration/userguide/howto_properties.html#Saving
顺便说一句,将属性直接保存到源代码( src / main / resources / rules.properties )通常是个坏主意。