Basically I would like to decode a given Html document, and replace all special chars, such as \" \" -> \" \", \">\" -
\" \"
\">\"
The following library can also be used for HTML escaping in Java: unbescape.
HTML can be unescaped this way:
final String unescapedText = HtmlEscape.unescapeHtml(escapedText);