I try to overwrite existing property value in Properties
file using Properties#setProperty()
method.
But I get an extra backslash...
For example I have following entry inside Properties file:
#url to server
url=http://192.22.222.222
and when I try to overwrite value http://192.22.222.222
by new value http://192.33.333.333
I get followong result:
http\://192.33.333.333
i.e. first backlash is unnecessary. I
Where is problem?