"RATNAGIRI GAS \u0026 POWER" is the data in properties file. When read to the application, it is getting converted to "RATNAGIRI GAS & POWER". Character type conversion is happening here. How to stop this automatic conversion?
This is how I load the properties file . Kindly share your ideas on why it is happening and how to read string as it is in properties file.
Properties prop = new Properties();
InputStream in = getClass().getResourceAsStream(properties_name);
property.load(in);