Possible Duplicate:
Java: How to decode HTML character entities in Java like HttpUtility.HtmlDecode?
is there a Java/Android way to convert HTML-escaped strings (such as Ö
or ß
) back to their ASCII/Unicode representations (such as Ö
or ß
)?
I of course do not want to do a simple string-replacement and try with just every HTML-escape-sequence that exists, I'd guess there is a ready-to use solution?
Thanks!