Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
This might help you: stackoverflow.com/questions/2242417/… – cpilko Jan 22 at 2:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.