Tagged Questions

0
votes
2answers
1k views

Java: How to decode HTML character entities in Java like HttpUtility.HtmlDecode?

Basically I would like to decode a given Html document, and replace all special chars, such as "&nbsp" -> " ", ">" -> ">". In .NET we can make use of HttpUtility.HtmlDecode …