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

I need to decode HTML entities, e.g. from ö to ö, and & to &.

URLEncoder.decode(str) does not do the job (convert from % notations). TextUtils has a HTMLencode, but not a HTMLdecode.

Are there any function for decoding HTML entities?

share|improve this question

1 Answer

up vote 52 down vote accepted

The Html class is supposed to do that, however it is said that everything is not supported. It always worked for me but I never had รถ so I can't tell for this one. Try Html.fromHtml(yourStr) to get the decoded string.

share|improve this answer
15  
And this is soo retarded since I have to do thisng like Html.fromHtml(Html.fromHtml((String) body).toString()); Why can't they just add Html.decode? – Bostone Sep 16 '10 at 23:23

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.