Nino Saturnino Martinez Vazquez Wael wrote:
I think he could just take a look at the Strings class(1.3), and make a workaround .. That should'nt be that critical...

into commons-lang, there is StringEscapeUtils.escapeHtml(String str)

from javadoc :
    Escapes the characters in a String using HTML entities.

    For example:

    "bread" & "butter"
    becomes:

    "bread" & "butter".

    Supports all known HTML 4.0 entities, including funky accents. Note that the 
commonly used apostrophe escape character (') is not a legal entity and so 
is not supported).

You could use it into your Own Component to escape special caractere.

Reply via email to