public abstract class HTMLEncoder extends Object
Constructor and Description |
---|
HTMLEncoder() |
Modifier and Type | Method and Description |
---|---|
static String |
encode(String string)
Variant of
encode(java.lang.String) where encodeNewline is false and encodeNbsp is true. |
static String |
encode(String string,
boolean encodeNewline)
Variant of
encode(java.lang.String) where encodeNbsp is true. |
static String |
encode(String string,
boolean encodeNewline,
boolean encodeSubsequentBlanksToNbsp)
Variant of
encode(java.lang.String) where encodeNbsp and encodeNonLatin are true |
static String |
encode(String string,
boolean encodeNewline,
boolean encodeSubsequentBlanksToNbsp,
boolean encodeNonLatin)
Encodes the given string, so that it can be used within a html page.
|
public static String encode(String string)
encode(java.lang.String)
where encodeNewline is false and encodeNbsp is true.public static String encode(String string, boolean encodeNewline)
encode(java.lang.String)
where encodeNbsp is true.public static String encode(String string, boolean encodeNewline, boolean encodeSubsequentBlanksToNbsp)
encode(java.lang.String)
where encodeNbsp and encodeNonLatin are truepublic static String encode(String string, boolean encodeNewline, boolean encodeSubsequentBlanksToNbsp, boolean encodeNonLatin)
string
- the string to convertencodeNewline
- if true newline characters are converted to <br>'sencodeSubsequentBlanksToNbsp
- if true subsequent blanks are converted to 'sencodeNonLatin
- if true encode non-latin characters as numeric character referencesCopyright © 2013 Apache Software Foundation. All Rights Reserved.