org.apache.xml.serialize
public class HTMLSerializer extends BaseMarkupSerializer
Deprecated: This class was deprecated in Xerces 2.6.2. It is recommended that new applications use JAXP's Transformation API for XML (TrAX) for serializing HTML. See the Xerces documentation for more information.
Implements an HTML/XHTML serializer supporting both DOM and SAX pretty serializing. HTML/XHTML mode is determined in the constructor. For usage instructions see {@link Serializer}.If an output stream is used, the encoding is taken from the output format (defaults to UTF-8). If a writer is used, make sure the writer uses the same encoding (if applies) as specified in the output format.
The serializer supports both DOM and SAX. DOM serializing is done by calling {@link #serialize} and SAX serializing is done by firing SAX events and using the serializer as a document handler.
If an I/O exception occurs while serializing, the serializer will not throw an exception directly, but only throw it at the end of serializing (either DOM or SAX's {@link org.xml.sax.DocumentHandler#endDocument}.
For elements that are not specified as whitespace preserving, the serializer will potentially break long text lines at space boundaries, indent lines, and serialize elements on separate lines. Line terminators will be regarded as spaces, and spaces at beginning of line will be stripped.
XHTML is slightly different than HTML:
Version: $Revision: 1.28 $ $Date: 2004/09/06 22:57:13 $
See Also: Serializer
Field Summary | |
---|---|
static String | XHTMLNamespace |
Constructor Summary | |
---|---|
protected | HTMLSerializer(boolean xhtml, OutputFormat format)
Constructs a new HTML/XHTML serializer depending on the value of
xhtml. |
HTMLSerializer()
Constructs a new serializer. | |
HTMLSerializer(OutputFormat format)
Constructs a new serializer. | |
HTMLSerializer(Writer writer, OutputFormat format)
Constructs a new serializer that writes to the specified writer
using the specified output format. | |
HTMLSerializer(OutputStream output, OutputFormat format)
Constructs a new serializer that writes to the specified output
stream using the specified output format. |
Method Summary | |
---|---|
void | characters(char[] chars, int start, int length) |
protected void | characters(String text) |
void | endElement(String namespaceURI, String localName, String rawName) |
void | endElement(String tagName) |
void | endElementIO(String namespaceURI, String localName, String rawName) |
protected String | escapeURI(String uri) |
protected String | getEntityRef(int ch) |
protected void | serializeElement(Element elem)
Called to serialize a DOM element. |
void | setOutputFormat(OutputFormat format) |
void | setXHTMLNamespace(String newNamespace) |
protected void | startDocument(String rootTagName)
Called to serialize the document's DOCTYPE by the root element.
|
void | startElement(String namespaceURI, String localName, String rawName, Attributes attrs) |
void | startElement(String tagName, AttributeList attrs) |
Parameters: xhtml True if XHTML serializing
Parameters: writer The writer to use format The output format to use, null for the default
Parameters: output The output stream to use format The output format to use, null for the default
This method will check if it has not been called before ({@link #_started}), will serialize the document type declaration, and will serialize all pre-root comments and PIs that were accumulated in the document (see {@link #serializePreRoot}). Pre-root will be serialized even if this is not the first root element of the document.