Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to delete key and value which is stored in a property file. How can i do that????

share|improve this question

1 Answer

up vote 12 down vote accepted

First load() it using the java.util.Properties API.

Properties properties = new Properties();
properties.load(reader);

Then you can use the remove() method.

properties.remove(key);

And finally store() it to the file.

properties.store(writer, null);

See also:

share|improve this answer
It is used to remove the key only if it is stored in a hashtable... I tried its not working........:( – harishtps Nov 19 '10 at 14:20
does it have something to do with the read,write property of a property file???? – harishtps Nov 19 '10 at 14:20
Did you close the Writer afterwards the usual Java IO way? – BalusC Nov 19 '10 at 14:22
got it....Thanks... I missed the store.....:) – harishtps Nov 19 '10 at 14:38
+1, Learned something new today.... :) – Buhake Sindi Nov 19 '10 at 14:43
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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