Hi I am using below code for propertyfile updation. The problem is that //
is changing to \/\/
and \
is removing. I saw one Post that someone used 1.10
jar for commons-configuration-1.10
and it is working, but I have used this but it is not working for me. Is there any other jars to avoid this.
PropertiesConfiguration databaseProperties;
databaseProperties = new PropertiesConfiguration("Properties.properties");
databaseProperties.setProperty("PropName", "jdbc:sqlserver://");
databaseProperties.save();
Thanks