public class XML11Serializer extends XMLSerializer
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. SAX serializing is done by firing
 SAX events and using the serializer as a document handler. DOM serializing is done
 by calling BaseMarkupSerializer.serialize(Document) or by using DOM Level 3  
 LSSerializer and
 serializing with LSSerializer.write(org.w3c.dom.Node, org.w3c.dom.ls.LSOutput),
 LSSerializer.writeToString(org.w3c.dom.Node).
 
 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().
 
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.
Serializer| Modifier and Type | Field and Description | 
|---|---|
| protected static boolean | DEBUGDeprecated.  | 
| protected boolean | fDOML1Deprecated.  | 
| protected org.apache.xerces.util.NamespaceSupport | fLocalNSBinderDeprecated.  stores all namespace bindings on the current element | 
| protected int | fNamespaceCounterDeprecated.  | 
| protected boolean | fNamespacesDeprecated.  Controls whether namespace fixup should be performed during
 the serialization. | 
| protected org.apache.xerces.util.NamespaceSupport | fNSBinderDeprecated.  stores namespaces in scope | 
| protected org.apache.xerces.util.SymbolTable | fSymbolTableDeprecated.  symbol table for serialization | 
| protected static java.lang.String | PREFIXDeprecated.  | 
fNamespacePrefixes_docTypePublicId, _docTypeSystemId, _encodingInfo, _format, _indenting, _prefixes, _printer, _started, fCurrentNode, fDOMError, fDOMErrorHandler, fDOMFilter, features, fStrBuffer| Constructor and Description | 
|---|
| XML11Serializer()Deprecated.  Constructs a new serializer. | 
| XML11Serializer(OutputFormat format)Deprecated.  Constructs a new serializer. | 
| XML11Serializer(java.io.OutputStream output,
               OutputFormat format)Deprecated.  Constructs a new serializer that writes to the specified output
 stream using the specified output format. | 
| XML11Serializer(java.io.Writer writer,
               OutputFormat format)Deprecated.  Constructs a new serializer that writes to the specified writer
 using the specified output format. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | characters(char[] chars,
          int start,
          int length)Deprecated.  Receive notification of character data. | 
| protected void | printCDATAText(java.lang.String text)Deprecated.  | 
| protected void | printEscaped(java.lang.String source)Deprecated.  Escapes a string so it may be printed as text content or attribute
 value. | 
| protected void | printText(char[] chars,
         int start,
         int length,
         boolean preserveSpace,
         boolean unescaped)Deprecated.  Called to print additional text with whitespace handling. | 
| protected void | printText(java.lang.String text,
         boolean preserveSpace,
         boolean unescaped)Deprecated.  | 
| protected void | printXMLChar(int ch)Deprecated.  print text data | 
| boolean | reset()Deprecated.  | 
| protected void | surrogates(int high,
          int low,
          boolean inContent)Deprecated.  | 
checkUnboundNamespacePrefixedNode, endElement, endElement, endElementIO, getEntityRef, serializeElement, setNamespaces, setOutputFormat, startDocument, startElement, startElementasContentHandler, asDocumentHandler, asDOMSerializer, attributeDecl, characters, cleanup, comment, comment, content, elementDecl, endCDATA, endDocument, endDTD, endEntity, endNonEscaping, endPrefixMapping, endPreserving, enterElementState, externalEntityDecl, fatalError, getElementState, getPrefix, ignorableWhitespace, internalEntityDecl, isDocumentState, leaveElementState, modifyDOMError, notationDecl, prepare, printDoctypeURL, printEscaped, processingInstruction, processingInstructionIO, serialize, serialize, serialize, serializeNode, serializePreRoot, setDocumentLocator, setOutputByteStream, setOutputCharStream, skippedEntity, startCDATA, startDocument, startDTD, startEntity, startNonEscaping, startPrefixMapping, startPreserving, unparsedEntityDeclprotected static final boolean DEBUG
protected org.apache.xerces.util.NamespaceSupport fNSBinder
protected org.apache.xerces.util.NamespaceSupport fLocalNSBinder
protected org.apache.xerces.util.SymbolTable fSymbolTable
protected boolean fDOML1
protected int fNamespaceCounter
protected static final java.lang.String PREFIX
protected boolean fNamespaces
public XML11Serializer()
BaseMarkupSerializer.setOutputCharStream(java.io.Writer) or BaseMarkupSerializer.setOutputByteStream(java.io.OutputStream)
 first.public XML11Serializer(OutputFormat format)
BaseMarkupSerializer.setOutputCharStream(java.io.Writer) or BaseMarkupSerializer.setOutputByteStream(java.io.OutputStream)
 first.public XML11Serializer(java.io.Writer writer,
               OutputFormat format)
writer - The writer to useformat - The output format to use, null for the defaultpublic XML11Serializer(java.io.OutputStream output,
               OutputFormat format)
output - The output stream to useformat - The output format to use, null for the defaultpublic void characters(char[] chars,
              int start,
              int length)
                throws org.xml.sax.SAXException
org.xml.sax.ContentHandlerThe Parser will call this method to report each chunk of character data. SAX parsers may return all contiguous character data in a single chunk, or they may split it into several chunks; however, all of the characters in any single event must come from the same external entity so that the Locator provides useful information.
The application must not attempt to read from the array outside of the specified range.
Individual characters may consist of more than one Java
 char value.  There are two important cases where this
 happens, because characters can't be represented in just sixteen bits.
 In one case, characters are represented in a Surrogate Pair,
 using two special Unicode values. Such characters are in the so-called
 "Astral Planes", with a code point above U+FFFF.  A second case involves
 composite characters, such as a base character combining with one or
 more accent characters. 
 Your code should not assume that algorithms using
 char-at-a-time idioms will be working in character
 units; in some cases they will split characters.  This is relevant
 wherever XML permits arbitrary characters, such as attribute values,
 processing instruction data, and comments as well as in data reported
 from this method.  It's also generally relevant whenever Java code
 manipulates internationalized text; the issue isn't unique to XML.
Note that some parsers will report whitespace in element
 content using the ignorableWhitespace
 method rather than this one (validating parsers must 
 do so).
characters in interface org.xml.sax.ContentHandlercharacters in interface org.xml.sax.DocumentHandlercharacters in class BaseMarkupSerializerchars - the characters from the XML documentstart - the start position in the arraylength - the number of characters to read from the arrayorg.xml.sax.SAXException - Any SAX exception, possibly
            wrapping another exception.ContentHandler.ignorableWhitespace(char[], int, int), 
Locatorprotected void printEscaped(java.lang.String source)
                     throws java.io.IOException
BaseMarkupSerializerprintEscaped in class XMLSerializersource - The string to escapejava.io.IOExceptionprotected final void printCDATAText(java.lang.String text)
                             throws java.io.IOException
printCDATAText in class BaseMarkupSerializerjava.io.IOExceptionprotected final void printXMLChar(int ch)
                           throws java.io.IOException
XMLSerializerprintXMLChar in class XMLSerializerjava.io.IOExceptionprotected final void surrogates(int high,
              int low,
              boolean inContent)
                         throws java.io.IOException
surrogates in class BaseMarkupSerializerjava.io.IOExceptionprotected void printText(java.lang.String text,
             boolean preserveSpace,
             boolean unescaped)
                  throws java.io.IOException
printText in class XMLSerializerjava.io.IOExceptionprotected void printText(char[] chars,
             int start,
             int length,
             boolean preserveSpace,
             boolean unescaped)
                  throws java.io.IOException
BaseMarkupSerializerBaseMarkupSerializer.printText(String,boolean,boolean) with a call to Printer.breakLine()
 for each new line. If spaces are not preserved, the text is
 broken at space boundaries if longer than the line width;
 Multiple spaces are printed as such, but spaces at beginning
 of line are removed.printText in class XMLSerializerchars - The text to printstart - The start offsetlength - The number of characterspreserveSpace - Space preserving flagunescaped - Print unescapedjava.io.IOExceptionpublic boolean reset()
reset in class XMLSerializerCopyright © 1999-2022 The Apache Software Foundation. All Rights Reserved.