I have to edit the existing file named root.propertis and update it without saving in to another file

Following is the sample proprety file.

root.label.getmore=Mehr Apps
root.msg.apps=Apps 
root.label.2.2=Coupons
root.label.35.2=MSNBC
root.label.43.2=PBS Kids
root.label.47.2=Yahoo! Digest

I have to update the string in the file "root.label.43.2=PBS Kids" to "root.label.43.2=Updated"

But i need to save in the same file (root.propertis )by repalcing the string root.label.43.2=PBS Kids.No need to update the changes in another properties file.

link|improve this question

"update it without saving in to another file". A very, very bad idea. Usually, we save to another file and then do two renames so that the original file is renamed to be a backup and the new file is renamed to have the original name. Please revise your question to use this "make a new file and rename it" approach. – S.Lott Dec 5 '11 at 11:02
yes i tried using the method you said.but unable to delete a root.properties file. – chinchu Dec 5 '11 at 11:04
i used File f1 = new File("C:\\Equinox\\UIDesign\\root\\root.properties"); boolean success=f1.delete(); it returns false – chinchu Dec 5 '11 at 11:05
but in case of a text file it is succesful – chinchu Dec 5 '11 at 11:06
"unable to delete a root.properties". That would be a separate question. Please ask that question. – S.Lott Dec 5 '11 at 11:09
feedback

3 Answers

up vote 4 down vote accepted

Use java.util.Properties:

File f = new File("root.properties");
FileInputStream fis = new FileInputStream(f);

Properties p = new Properties();
p.load(fis);
fis.close();

p.setProperty("root.label.43.2", "Updated");

The call p.store() to save to a file.

Note exception handling has been omitted.

link|improve this answer
feedback

You could use the following sequence to change Properties load the properties with load(), setProperty(key,value) and finally call store() to write it back.

link|improve this answer
feedback

Reading and writing a .properties file can easily be achieved by using the Properties class (see javadoc).

So you can

  1. Read the file into a Properties instance using the Properties#load method
  2. Update the Properties instance using the Properties#setProperty method
  3. Write the Properties to file using the Properties#store method
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.