vote up 0 vote down star

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.

What's the equivalent function in Java?

flag

  is called character entity. Edited the title. – eed3si9n Jun 15 at 2:46

2 Answers

vote up 5 vote down check

I have used the Apache Commons StringEscapeUtils.unescapeHTML() for this:

Unescapes a string containing entity escapes to a string containing the actual Unicode characters corresponding to the escapes. Supports HTML 4.0 entities.

link|flag
vote up 0 vote down

I've never used this but found Entity Strip/Insert.

link|flag

Your Answer

Get an OpenID
or

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