Reading and Writing a Properties File

// Read properties file. Properties properties = new Properties(); try { properties.load(new FileInputStream("filename.properties")); } catch (IOException e) { } // Write properties file. try { properties.store(new FileOutputStream("filename.properties"), null); } catch (IOException e) { }
Here is an example of the contents of a properties file:
# a comment ! a comment a = a string b = a string with escape sequences \t \n \r \\ \" \' \ (space) \u0123 c = a string with a continuation line \ continuation line d.e.f = another string

Comments

24 Feb 2010 - 12:19pm by Anonymous (not verified)

Helped me a lot! It made my code really simpler!
Thanx

3 Mar 2010 - 1:46am by Rita (not verified)

Great, thank U.

8 Mar 2010 - 10:52pm by Hari Kishan (not verified)

I am facing problem with "-" in th properties file.Can you please help me escaping the "-" in the properties file.My mail id is kishan.annam@gmail.com

Post a comment

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters shown in the image. Ignore spaces and be careful about upper and lower case.