Package com.lowagie.text.html
Class HtmlEncoder
- java.lang.Object
-
- com.lowagie.text.html.HtmlEncoder
-
public final class HtmlEncoder extends java.lang.Object
This class converts aString
to the HTML-format of a String.To convert the
String
, each character is examined:- ASCII-characters from 000 till 031 are represented as &#xxx;
(with xxx = the value of the character) - ASCII-characters from 032 t/m 127 are represented by the character itself, except for:
- '\n' becomes <BR>\n
- " becomes "
- & becomes &
- < becomes <
- > becomes >
- ASCII-characters from 128 till 255 are represented as &#xxx;
(with xxx = the value of the character)
Example:
String htmlPresentation = HtmlEncoder.encode("Marie-Thérèse Sørensen");
for more info: see O'Reilly; "HTML: The Definitive Guide" (page 164)
- ASCII-characters from 000 till 031 are represented as &#xxx;
-
-
Field Summary
Fields Modifier and Type Field Description private static java.lang.String[]
htmlCode
List with the HTML translation of all the characters.
-
Constructor Summary
Constructors Modifier Constructor Description private
HtmlEncoder()
This class will never be constructed.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
encode(java.awt.Color color)
Converts aColor
into a HTML representation of thisColor
.static java.lang.String
encode(java.lang.String string)
Converts aString
to the HTML-format of thisString
.static java.lang.String
getAlignment(int alignment)
Translates the alignment value.
-
-
-
Method Detail
-
encode
public static java.lang.String encode(java.lang.String string)
Converts aString
to the HTML-format of thisString
.- Parameters:
string
- TheString
to convert- Returns:
- a
String
-
encode
public static java.lang.String encode(java.awt.Color color)
Converts aColor
into a HTML representation of thisColor
.- Parameters:
color
- theColor
that has to be converted.- Returns:
- the HTML representation of this
Color
-
getAlignment
public static java.lang.String getAlignment(int alignment)
Translates the alignment value.- Parameters:
alignment
- the alignment value- Returns:
- the translated value
-
-