Replace Single Backward Slash in Java String
Topcan5Jan 9 2011 — edited Jan 17 2011I have a String lsString = "C:\test\test1" from the font end javascript code.
Somehow Java translates it to "C: est est1". How can I get the original absolute path? I tried replaceAll("\","////"), it doesn't work.
Help!!!