Returns a copy of this DocumentPrinter
that omits XML declarations
Returns a copy of this DocumentPrinter
that omits XML declarations
Converts the Document
to a String
.
Converts the Document
to a String
. May use a lot of memory for large XML documents.
To have more control over the character encoding of the output, when converting the String to bytes
(and of the encoding mentioned in the XML declaration, if any), consider using one of the other overloaded
print
methods taking a Document
.
Serializes the Document
to an output stream, using the given encoding.
Serializes the Document
to an output stream, using the given encoding.
This method should close the output stream afterwards.
May use a lot of memory for large XML documents, although not as much as the print
method that returns a byte array.
Converts the Elem
to a String
, omitting the XML declaration.
Converts the Elem
to a String
, omitting the XML declaration. May use a lot of memory for large XML documents.
To have more control over the character encoding of the output, when converting the String to bytes
(and of the encoding mentioned in the XML declaration, if any), consider using one of the other overloaded
print
methods taking an Elem
.
Serializes the Elem
to an output stream, omitting the XML declaration.
Serializes the Elem
to an output stream, omitting the XML declaration.
This method should close the output stream afterwards.
Converts the Elem
to a byte array, omitting the XML declaration
Converts the Elem
to a byte array, omitting the XML declaration
Converts the Document
to a byte array, using the given encoding.
Converts the Document
to a byte array, using the given encoding. May use a lot of memory for large XML documents.
Returns an adapted copy having the passed DocumentConverter.
Returns an adapted copy having the passed DocumentConverter. This method makes it possible to use an adapted document converter, which may be needed depending on the JAXP implementation used.
SAX-based
Document
printer. It should be the fastest of theDocumentPrinter
implementations, and use the least memory.See http://blogger.ziesemer.com/2007/06/xml-generation-in-java.html#SAXMethod.
If more flexibility is needed in configuring the
DocumentPrinter
than offered by this class, consider writing a wrapperDocumentPrinter
which wraps aDocumentPrinterUsingSax
, but adapts theprint
method. This would make it possible to adapt the generation of SAX events, for example.A
DocumentPrinterUsingSax
instance can be re-used multiple times, from the same thread. If theSAXTransformerFactory
is thread-safe, it can even be re-used from multiple threads. Typically aSAXTransformerFactory
cannot be trusted to be thread-safe, however. In a web application, one (safe) way to deal with that is to use oneSAXTransformerFactory
instance per request.