您好我使用下面的代码进行属性文件更新。问题是//
正在更改为\/\/
并且\
正在删除。我看到一个帖子,有人使用1.10
jar commons-configuration-1.10
并且它正在运行,但我已经使用了它,但它对我不起作用。还有其他罐子可以避免这种情况。
PropertiesConfiguration databaseProperties;
databaseProperties = new PropertiesConfiguration("Properties.properties");
databaseProperties.setProperty("PropName", "jdbc:sqlserver://");
databaseProperties.save();
由于