i want a solution to the problem stated below.
when i use the store ( ) of java.util.properties what it does is that it copies
the key and values to the file being specified
now if i give say p.store("key1","value1")
this is stored in the file as key1=value1
however if i give p.store("key1",":value1")
this is stored as key1 = /:value1
here p is an object of the class properties of java.util.
now what i want to do is that i should override this property so that when i use
: before value1 then too i get the result as key1 = value1.
can anyone send me the whole code for this.