In my Android application I'm trying to get photos from a Facebook album using REST.
The response I receive back contains the url of the picture:
"picture": "http://photos-d.ak.fbcdn.net/blablabla"
When I parse the String I get in java the following string:
"picture": "http:\/\/photos-d.ak.fbcdn.net\/blablabla"
I'm trying to parse this into a useful link so I can open the image, the problem that Java is retrieving the String with the escape characters, so the gallery throws an Unknown host exception.