I am working with a web service for my next android application. This web service returns me some data, which is in an escape sequence and in JSON format. I am not able to process it using Java in Android.
The problem that I'm having with the data is for the following string example:
http:\\/\\/www.example.com\\/temp\\/
.
Apparently Java can not let me have an escape sequence that contains \/
in it.
It would not even let me put that in a double quote, so that I could use an unescape utility. Can you please help me with it?
Thanks in Advance!