Basically I would like to decode a given Html document, and replace all special chars, such as " " -> " ", ">" -> ">".
In .NET we can make use of HttpUtility.HtmlDecode.
What's the equivalent function in Java?
|
|
Basically I would like to decode a given Html document, and replace all special chars, such as " " -> " ", ">" -> ">". In .NET we can make use of What's the equivalent function in Java?
|
|||
|
|
|
I have used the Apache Commons StringEscapeUtils.unescapeHTML() for this:
|
||
|
|
|
|
I've never used this but found Entity Strip/Insert. |
||
|
|