public class TextSerializer extends BaseMarkupSerializer
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 BaseMarkupSerializer.serialize(org.w3c.dom.Element) 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 DocumentHandler.endDocument().
Serializer_docTypePublicId, _docTypeSystemId, _encodingInfo, _format, _indenting, _prefixes, _printer, _started, fCurrentNode, fDOMError, fDOMErrorHandler, fDOMFilter, features, fStrBuffer| Constructor and Description |
|---|
TextSerializer()
Deprecated.
Constructs a new serializer.
|
| Modifier and Type | Method and Description |
|---|---|
void |
characters(char[] chars,
int start,
int length)
Deprecated.
|
protected void |
characters(java.lang.String text,
boolean unescaped)
Deprecated.
|
void |
comment(char[] chars,
int start,
int length)
Deprecated.
|
void |
comment(java.lang.String text)
Deprecated.
|
protected ElementState |
content()
Deprecated.
Must be called by a method about to print any type of content.
|
void |
endElement(java.lang.String tagName)
Deprecated.
|
void |
endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String rawName)
Deprecated.
|
void |
endElementIO(java.lang.String tagName)
Deprecated.
|
protected java.lang.String |
getEntityRef(int ch)
Deprecated.
Returns the suitable entity reference for this character value,
or null if no such entity exists.
|
void |
processingInstructionIO(java.lang.String target,
java.lang.String code)
Deprecated.
|
protected void |
serializeElement(org.w3c.dom.Element elem)
Deprecated.
Called to serialize a DOM element.
|
protected void |
serializeNode(org.w3c.dom.Node node)
Deprecated.
Serialize the DOM node.
|
void |
setOutputFormat(OutputFormat format)
Deprecated.
Specifies an output format for this serializer.
|
protected void |
startDocument(java.lang.String rootTagName)
Deprecated.
Called to serialize the document's DOCTYPE by the root element.
|
void |
startElement(java.lang.String tagName,
org.xml.sax.AttributeList attrs)
Deprecated.
|
void |
startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String rawName,
org.xml.sax.Attributes attrs)
Deprecated.
|
asContentHandler, asDocumentHandler, asDOMSerializer, attributeDecl, characters, checkUnboundNamespacePrefixedNode, cleanup, elementDecl, endCDATA, endDocument, endDTD, endEntity, endNonEscaping, endPrefixMapping, endPreserving, enterElementState, externalEntityDecl, fatalError, getElementState, getPrefix, ignorableWhitespace, internalEntityDecl, isDocumentState, leaveElementState, modifyDOMError, notationDecl, prepare, printCDATAText, printDoctypeURL, printEscaped, printEscaped, printText, printText, processingInstruction, reset, serialize, serialize, serialize, serializePreRoot, setDocumentLocator, setOutputByteStream, setOutputCharStream, skippedEntity, startCDATA, startDocument, startDTD, startEntity, startNonEscaping, startPrefixMapping, startPreserving, surrogates, unparsedEntityDeclpublic TextSerializer()
BaseMarkupSerializer.setOutputCharStream(java.io.Writer) or BaseMarkupSerializer.setOutputByteStream(java.io.OutputStream)
first.public void setOutputFormat(OutputFormat format)
SerializersetOutputFormat in interface SerializersetOutputFormat in class BaseMarkupSerializerformat - The output format to usepublic void startElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String rawName,
org.xml.sax.Attributes attrs)
throws org.xml.sax.SAXException
org.xml.sax.SAXExceptionpublic void endElement(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String rawName)
throws org.xml.sax.SAXException
org.xml.sax.SAXExceptionpublic void startElement(java.lang.String tagName,
org.xml.sax.AttributeList attrs)
throws org.xml.sax.SAXException
org.xml.sax.SAXExceptionpublic void endElement(java.lang.String tagName)
throws org.xml.sax.SAXException
org.xml.sax.SAXExceptionpublic void endElementIO(java.lang.String tagName)
throws java.io.IOException
java.io.IOExceptionpublic void processingInstructionIO(java.lang.String target,
java.lang.String code)
throws java.io.IOException
processingInstructionIO in class BaseMarkupSerializerjava.io.IOExceptionpublic void comment(java.lang.String text)
comment in class BaseMarkupSerializerpublic void comment(char[] chars,
int start,
int length)
comment in interface org.xml.sax.ext.LexicalHandlercomment in class BaseMarkupSerializerpublic void characters(char[] chars,
int start,
int length)
throws org.xml.sax.SAXException
characters in interface org.xml.sax.ContentHandlercharacters in interface org.xml.sax.DocumentHandlercharacters in class BaseMarkupSerializerorg.xml.sax.SAXExceptionprotected void characters(java.lang.String text,
boolean unescaped)
throws java.io.IOException
java.io.IOExceptionprotected void startDocument(java.lang.String rootTagName)
throws java.io.IOException
This method will check if it has not been called before (BaseMarkupSerializer._started),
will serialize the document type declaration, and will serialize all
pre-root comments and PIs that were accumulated in the document
(see BaseMarkupSerializer.serializePreRoot()). Pre-root will be serialized even if
this is not the first root element of the document.
java.io.IOExceptionprotected void serializeElement(org.w3c.dom.Element elem)
throws java.io.IOException
startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes), endElement(java.lang.String, java.lang.String, java.lang.String) and serializing everything
inbetween, but better optimized.serializeElement in class BaseMarkupSerializerelem - The element to serializejava.io.IOException - An I/O exception occured while
serializingprotected void serializeNode(org.w3c.dom.Node node)
throws java.io.IOException
serializeNode in class BaseMarkupSerializernode - The node to serializejava.io.IOException - An I/O exception occured while
serializingBaseMarkupSerializer.serializeElement(org.w3c.dom.Element)protected ElementState content()
BaseMarkupSerializercontent in class BaseMarkupSerializerprotected java.lang.String getEntityRef(int ch)
BaseMarkupSerializergetEntityRef in class BaseMarkupSerializerch - Character valueCopyright ? 1999-2010 The Apache Software Foundation. All Rights Reserved.