org.jdom2.output.XMLOutputter Maven / Gradle / Ivy
Show all versions of jdom Show documentation
/*--
Copyright (C) 2000-2012 Jason Hunter & Brett McLaughlin.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions, and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions, and the disclaimer that follows
these conditions in the documentation and/or other materials
provided with the distribution.
3. The name "JDOM" must not be used to endorse or promote products
derived from this software without prior written permission. For
written permission, please contact .
4. Products derived from this software may not be called "JDOM", nor
may "JDOM" appear in their name, without prior written permission
from the JDOM Project Management .
In addition, we request (but do not require) that you include in the
end-user documentation provided with the redistribution and/or in the
software itself an acknowledgement equivalent to the following:
"This product includes software developed by the
JDOM Project (http://www.jdom.org/)."
Alternatively, the acknowledgment may be graphical using the logos
available at http://www.jdom.org/images/logos.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
This software consists of voluntary contributions made by many
individuals on behalf of the JDOM Project and was originally
created by Jason Hunter and
Brett McLaughlin . For more information
on the JDOM Project, please see .
*/
package org.jdom2.output;
import java.io.BufferedOutputStream;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.StringWriter;
import java.io.Writer;
import java.util.List;
import org.jdom2.Attribute;
import org.jdom2.CDATA;
import org.jdom2.Comment;
import org.jdom2.Content;
import org.jdom2.DocType;
import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.EntityRef;
import org.jdom2.ProcessingInstruction;
import org.jdom2.Text;
import org.jdom2.output.support.AbstractXMLOutputProcessor;
import org.jdom2.output.support.FormatStack;
import org.jdom2.output.support.XMLOutputProcessor;
/**
* Outputs a JDOM document as a stream of bytes.
*
* The XMLOutputter can manage many styles of document formatting, from
* untouched to 'pretty' printed. The default is to output the document content
* exactly as created, but this can be changed by setting a new Format object:
*
* - For pretty-print output, use
*
{@link Format#getPrettyFormat()}
.
* - For whitespace-normalised output, use
*
{@link Format#getCompactFormat()}
.
* - For unmodified-format output, use
*
{@link Format#getRawFormat()}
.
*
*
* There are {@link #output output(...)}
methods to print any of
* the standard JDOM classes to either a Writer or an OutputStream.
*
* Warning: When outputting to a Writer, make sure the writer's encoding
* matches the encoding setting in the Format object. This ensures the encoding
* in which the content is written (controlled by the Writer configuration)
* matches the encoding placed in the document's XML declaration (controlled by
* the XMLOutputter). Because a Writer cannot be queried for its encoding, the
* information must be passed to the Format manually in its constructor or via
* the {@link Format#setEncoding}
method. The default encoding is
* UTF-8.
*
* The methods {@link #outputString outputString(...)}
are for
* convenience only; for top performance you should call one of the {@link
* #output output(...)}
methods and pass in your own Writer or
* OutputStream if possible.
*
* All of the output*(...)
methods will flush the
* destination Writer or OutputStream before returning, and none of them
* will close()
the destination.
*
* XML declarations are always printed on their own line followed by a line
* separator (this doesn't change the semantics of the document). To omit
* printing of the declaration use
* {@link Format#setOmitDeclaration}
. To omit printing of the
* encoding in the declaration use {@link Format#setOmitEncoding}
.
* Unfortunately there is currently no way to know the original encoding of the
* document.
*
* Empty elements are by default printed as <empty/>, but this can be
* configured with {@link Format#setExpandEmptyElements}
to cause
* them to be expanded to <empty></empty>.
*
* If changing the {@link Format} settings are insufficient for your output
* needs you can customise this XMLOutputter further by setting a different
* {@link XMLOutputProcessor} with the
* {@link #setXMLOutputProcessor(XMLOutputProcessor)} method or an appropriate
* constructor. A fully-enabled Abstract class
* {@link AbstractXMLOutputProcessor} is available to be further extended to
* your needs if all you want to do is tweak some details.
*
* @author Brett McLaughlin
* @author Jason Hunter
* @author Jason Reid
* @author Wolfgang Werner
* @author Elliotte Rusty Harold
* @author David & Will (from Post Tool Design)
* @author Dan Schaffer
* @author Alex Chaffee
* @author Bradley S. Huffman
*/
public final class XMLOutputter implements Cloneable {
/*
* =====================================================================
* Static content.
* =====================================================================
*/
/**
* Get an OutputStreamWriter, use specified encoding.
*
* @param out
* The OutputStream to wrap in the writer
* @param format
* The format is used to obtain the Character Encoding.
* @return An Writer (Buffered) that delegates to the specified output steam
* @throws java.io.UnsupportedEncodingException
*/
private static final Writer makeWriter(final OutputStream out,
final Format format)
throws java.io.UnsupportedEncodingException {
return new BufferedWriter(new OutputStreamWriter(
new BufferedOutputStream(out), format.getEncoding()));
}
/**
* Create a final and static instance of the AbstractXMLOutputProcessor The
* final part is important because it improves performance.
*
* The JDOM user can change the actual XMLOutputProcessor with the
* {@link XMLOutputter#setXMLOutputProcessor(XMLOutputProcessor)} method.
*
* @author rolf
*/
private static final class DefaultXMLProcessor
extends AbstractXMLOutputProcessor {
/**
* A helper method to implement backward-compatibility with JDOM1
*
* @see XMLOutputter#escapeAttributeEntities(String)
* @param str
* The String to output.
* @param format
* The format details to use.
* @return The input String escaped as an attribute value.
*/
public String escapeAttributeEntities(String str, Format format) {
StringWriter sw = new StringWriter();
try {
super.attributeEscapedEntitiesFilter(sw, new FormatStack(format), str);
} catch (IOException e) {
// no IOException on StringWriter....
}
return sw.toString();
}
/**
* A helper method to implement backward-compatibility with JDOM1
*
* @see XMLOutputter#escapeElementEntities(String)
* @param str
* The String to output.
* @param format
* The format details to use.
* @return The input String escaped as an element text value.
*/
public final String escapeElementEntities(final String str,
final Format format) {
return Format.escapeText(format.getEscapeStrategy(),
format.getLineSeparator(), str);
}
}
/**
* This constant XMLOutputProcessor is used for all non-customised
* XMLOutputters
*/
private static final DefaultXMLProcessor DEFAULTPROCESSOR =
new DefaultXMLProcessor();
/*
* =====================================================================
* Instance content.
* =====================================================================
*/
// For normal output
private Format myFormat = null;
// The actual XMLOutputProcessor to delegate to.
private XMLOutputProcessor myProcessor = null;
/*
* =====================================================================
* Constructors
* =====================================================================
*/
/**
* This will create an XMLOutputter
with the specified format
* characteristics.
*
* Note: the format object is cloned internally before use. If you
* want to modify the Format after constructing the XMLOutputter you can
* modify the Format instance {@link #getFormat()} returns.
*
* @param format
* The Format instance to use. This instance will be cloned() and as
* a consequence, changes made to the specified format instance
* will not be reflected in this XMLOutputter. A null input
* format indicates that XMLOutputter should use the default
* {@link Format#getRawFormat()}
* @param processor
* The XMLOutputProcessor to delegate output to. If null the
* XMLOutputter will use the default XMLOutputProcessor.
*/
public XMLOutputter(Format format, XMLOutputProcessor processor) {
myFormat = format == null ? Format.getRawFormat() : format.clone();
myProcessor = processor == null ? DEFAULTPROCESSOR : processor;
}
/**
* This will create an XMLOutputter
with a default
* {@link Format} and {@link XMLOutputProcessor}.
*/
public XMLOutputter() {
this(null, null);
}
/**
* This will create an XMLOutputter
with the same
* customisations set in the given XMLOutputter
instance. Note
* that XMLOutputter two = one.clone();
would work equally
* well.
*
* @param that
* the XMLOutputter to clone
*/
public XMLOutputter(XMLOutputter that) {
this(that.myFormat, null);
}
/**
* This will create an XMLOutputter
with the specified format
* characteristics.
*
* Note: the format object is cloned internally before use.
*
* @param format
* The Format instance to use. This instance will be cloned() and as
* a consequence, changes made to the specified format instance
* will not be reflected in this XMLOutputter. A null input
* format indicates that XMLOutputter should use the default
* {@link Format#getRawFormat()}
*/
public XMLOutputter(Format format) {
this(format, null);
}
/**
* This will create an XMLOutputter
with the specified
* XMLOutputProcessor.
*
* @param processor
* The XMLOutputProcessor to delegate output to. If null the
* XMLOutputter will use the default XMLOutputProcessor.
*/
public XMLOutputter(XMLOutputProcessor processor) {
this(null, processor);
}
/*
* =======================================================================
* API - Settings...
* =======================================================================
*/
/**
* Sets the new format logic for the XMLOutputter. Note the Format object is
* cloned internally before use.
*
* @see #getFormat()
* @param newFormat
* the format to use for subsequent output
*/
public void setFormat(Format newFormat) {
this.myFormat = newFormat.clone();
}
/**
* Returns the current format in use by the XMLOutputter. Note the Format
* object returned is not a clone of the one used internally, thus,
* an XMLOutputter instance is able to have it's Format changed by changing
* the settings on the Format instance returned by this method.
*
* @return the current Format instance used by this XMLOutputter.
*/
public Format getFormat() {
return myFormat;
}
/**
* Returns the current XMLOutputProcessor instance in use by the
* XMLOutputter.
*
* @return the current XMLOutputProcessor instance.
*/
public XMLOutputProcessor getXMLOutputProcessor() {
return myProcessor;
}
/**
* Sets a new XMLOutputProcessor instance for this XMLOutputter. Note the
* processor object is expected to be thread-safe.
*
* @param processor
* the new XMLOutputProcesor to use for output
*/
public void setXMLOutputProcessor(XMLOutputProcessor processor) {
this.myProcessor = processor;
}
/*
* =======================================================================
* API - Output to STREAM Methods ... All methods defer to the WRITER
* equivalents
* =======================================================================
*/
/**
* This will print the {@link Document}
to the given
* OutputStream. The characters are printed using the encoding specified in
* the constructor, or a default of UTF-8.
*
* @param doc
* Document
to format.
* @param out
* OutputStream
to use.
* @throws IOException
* if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(Document doc, OutputStream out)
throws IOException {
output(doc, makeWriter(out, myFormat));
}
/**
* This will print the {@link DocType}
to the given
* OutputStream.
*
* @param doctype
* DocType
to output.
* @param out
* OutputStream
to use.
* @throws IOException
* if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(DocType doctype, OutputStream out) throws IOException {
output(doctype, makeWriter(out, myFormat));
}
/**
* Print out an {@link Element}
, including its
* {@link Attribute}
s, and all contained (child) elements, etc.
*
* @param element
* Element
to output.
* @param out
* OutputStream
to use.
* @throws IOException
* if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(Element element, OutputStream out) throws IOException {
output(element, makeWriter(out, myFormat));
}
/**
* This will handle printing out an {@link
* Element}
's content only, not including its tag, and attributes.
* This can be useful for printing the content of an element that contains
* HTML, like "<description>JDOM is
* <b>fun>!</description>".
*
* @param element
* Element
to output.
* @param out
* OutputStream
to use.
* @throws IOException
* if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void outputElementContent(Element element, OutputStream out)
throws IOException {
outputElementContent(element, makeWriter(out, myFormat));
}
/**
* This will handle printing out a list of nodes. This can be useful for
* printing the content of an element that contains HTML, like
* "<description>JDOM is <b>fun>!</description>".
*
* The list is assumed to contain legal JDOM nodes. If other content is
* coerced on to the list it will cause ClassCastExceptions, and null Lists
* or null list members will cause NullPointerException.
*
* @param list
* List
of nodes.
* @param out
* OutputStream
to use.
* @throws IOException
* if there's any problem writing.
* @throws ClassCastException
* if non-{@link Content} is forced in to the list
* @throws NullPointerException
* if the List is null or contains null members.
*/
public final void output(List extends Content> list, OutputStream out)
throws IOException {
output(list, makeWriter(out, myFormat)); // output() flushes
}
/**
* Print out a {@link CDATA}
node.
*
* @param cdata
* CDATA
to output.
* @param out
* OutputStream
to use.
* @throws IOException
* if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(CDATA cdata, OutputStream out) throws IOException {
output(cdata, makeWriter(out, myFormat)); // output() flushes
}
/**
* Print out a {@link Text}
node. Perfoms the necessary entity
* escaping and whitespace stripping.
*
* @param text
* Text
to output.
* @param out
* OutputStream
to use.
* @throws IOException
* if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(Text text, OutputStream out) throws IOException {
output(text, makeWriter(out, myFormat)); // output() flushes
}
/**
* Print out a {@link Comment}
.
*
* @param comment
* Comment
to output.
* @param out
* OutputStream
to use.
* @throws IOException
* if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(Comment comment, OutputStream out) throws IOException {
output(comment, makeWriter(out, myFormat)); // output() flushes
}
/**
* Print out a {@link ProcessingInstruction}
.
*
* @param pi
* ProcessingInstruction
to output.
* @param out
* OutputStream
to use.
* @throws IOException
* if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(ProcessingInstruction pi, OutputStream out)
throws IOException {
output(pi, makeWriter(out, myFormat)); // output() flushes
}
/**
* Print out a {@link EntityRef}
.
*
* @param entity
* EntityRef
to output.
* @param out
* OutputStream
to use.
* @throws IOException
* if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public void output(EntityRef entity, OutputStream out) throws IOException {
output(entity, makeWriter(out, myFormat)); // output() flushes
}
/*
* =======================================================================
* API - Output to STRING Methods ... All methods defer to the WRITER
* equivalents
* =======================================================================
*/
/**
* Return a string representing a {@link Document}. Uses an internal
* StringWriter.
*
* Warning: a String is Unicode, which may not match the outputter's
* specified encoding.
*
* @param doc
* Document
to format.
* @return the input content formatted as an XML String.
* @throws NullPointerException
* if the specified content is null.
*/
public final String outputString(Document doc) {
StringWriter out = new StringWriter();
try {
output(doc, out); // output() flushes
} catch (IOException e) {
// swallow - will never happen.
}
return out.toString();
}
/**
* Return a string representing a {@link DocType}.
*
* Warning: a String is Unicode, which may not match the outputter's
* specified encoding.
*
* @param doctype
* DocType
to format.
* @return the input content formatted as an XML String.
* @throws NullPointerException
* if the specified content is null.
*/
public final String outputString(DocType doctype) {
StringWriter out = new StringWriter();
try {
output(doctype, out); // output() flushes
} catch (IOException e) {
// swallow - will never happen.
}
return out.toString();
}
/**
* Return a string representing an {@link Element}.
*
* Warning: a String is Unicode, which may not match the outputter's
* specified encoding.
*
* @param element
* Element
to format.
* @return the input content formatted as an XML String.
* @throws NullPointerException
* if the specified content is null.
*/
public final String outputString(Element element) {
StringWriter out = new StringWriter();
try {
output(element, out); // output() flushes
} catch (IOException e) {
// swallow - will never happen.
}
return out.toString();
}
/**
* Return a string representing a List of {@link Content} nodes.
* The list is assumed to contain legal JDOM nodes. If other content is
* coerced on to the list it will cause ClassCastExceptions, and null List
* members will cause NullPointerException.
*
* Warning: a String is Unicode, which may not match the outputter's
* specified encoding.
*
* @param list
* List
to format.
* @return the input content formatted as an XML String.
* @throws ClassCastException
* if non-{@link Content} is forced in to the list
* @throws NullPointerException
* if the List is null or contains null members.
*/
public final String outputString(List extends Content> list) {
StringWriter out = new StringWriter();
try {
output(list, out); // output() flushes
} catch (IOException e) {
// swallow - will never happen.
}
return out.toString();
}
/**
* Return a string representing a {@link CDATA} node.
*
* Warning: a String is Unicode, which may not match the outputter's
* specified encoding.
*
* @param cdata
* CDATA
to format.
* @return the input content formatted as an XML String.
* @throws NullPointerException
* if the specified content is null.
*/
public final String outputString(CDATA cdata) {
StringWriter out = new StringWriter();
try {
output(cdata, out); // output() flushes
} catch (IOException e) {
// swallow - will never happen.
}
return out.toString();
}
/**
* Return a string representing a {@link Text} node.
*
* Warning: a String is Unicode, which may not match the outputter's
* specified encoding.
*
* @param text
* Text
to format.
* @return the input content formatted as an XML String.
* @throws NullPointerException
* if the specified content is null.
*/
public final String outputString(Text text) {
StringWriter out = new StringWriter();
try {
output(text, out); // output() flushes
} catch (IOException e) {
// swallow - will never happen.
}
return out.toString();
}
/**
* Return a string representing a {@link Comment}.
*
* Warning: a String is Unicode, which may not match the outputter's
* specified encoding.
*
* @param comment
* Comment
to format.
* @return the input content formatted as an XML String.
* @throws NullPointerException
* if the specified content is null.
*/
public final String outputString(Comment comment) {
StringWriter out = new StringWriter();
try {
output(comment, out); // output() flushes
} catch (IOException e) {
// swallow - will never happen.
}
return out.toString();
}
/**
* Return a string representing a {@link ProcessingInstruction}.
*
* Warning: a String is Unicode, which may not match the outputter's
* specified encoding.
*
* @param pi
* ProcessingInstruction
to format.
* @return the input content formatted as an XML String.
* @throws NullPointerException
* if the specified content is null.
*/
public final String outputString(ProcessingInstruction pi) {
StringWriter out = new StringWriter();
try {
output(pi, out); // output() flushes
} catch (IOException e) {
// swallow - will never happen.
}
return out.toString();
}
/**
* Return a string representing an {@link EntityRef}.
*
* Warning: a String is Unicode, which may not match the outputter's
* specified encoding.
*
* @param entity
* EntityRef
to format.
* @return the input content formatted as an XML String.
* @throws NullPointerException
* if the specified content is null.
*/
public final String outputString(EntityRef entity) {
StringWriter out = new StringWriter();
try {
output(entity, out); // output() flushes
} catch (IOException e) {
// swallow - will never happen.
}
return out.toString();
}
/**
* This will handle printing out an {@link
* Element}
's content only, not including its tag, and attributes.
* This can be useful for printing the content of an element that contains
* HTML, like "<description>JDOM is
* <b>fun>!</description>".
*
* Warning: a String is Unicode, which may not match the outputter's
* specified encoding.
*
* @param element
* Element
to output.
* @return the input content formatted as an XML String.
* @throws NullPointerException
* if the specified content is null.
*/
public final String outputElementContentString(Element element) {
StringWriter out = new StringWriter();
try {
outputElementContent(element, out); // output() flushes
} catch (IOException e) {
// swallow - will never happen.
}
return out.toString();
}
/*
* ========================================================================
* API - Output to WRITER Methods ... These are the core methods that the
* Stream and String output methods call. On the other hand, these methods
* defer to the protected/override methods. These methods flush the writer.
* ========================================================================
*/
/**
* This will print the Document
to the given Writer.
*
* Warning: using your own Writer may cause the outputter's preferred
* character encoding to be ignored. If you use encodings other than UTF-8,
* we recommend using the method that takes an OutputStream instead.
*
*
* @param doc
* Document
to format.
* @param out
* Writer
to use.
* @throws IOException
* - if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(Document doc, Writer out) throws IOException {
myProcessor.process(out, myFormat, doc);
out.flush();
}
/**
* Print out the {@link DocType}
.
*
* @param doctype
* DocType
to output.
* @param out
* Writer
to use.
* @throws IOException
* - if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(DocType doctype, Writer out) throws IOException {
myProcessor.process(out, myFormat, doctype);
out.flush();
}
/**
* Print out an {@link Element}
, including its
* {@link Attribute}
s, and all contained (child) elements, etc.
*
* @param element
* Element
to output.
* @param out
* Writer
to use.
* @throws IOException
* - if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(Element element, Writer out) throws IOException {
// If this is the root element we could pre-initialize the
// namespace stack with the namespaces
myProcessor.process(out, myFormat, element);
out.flush();
}
/**
* This will handle printing out an {@link
* Element}
's content only, not including its tag, and attributes.
* This can be useful for printing the content of an element that contains
* HTML, like "<description>JDOM is
* <b>fun>!</description>".
*
* @param element
* Element
to output.
* @param out
* Writer
to use.
* @throws IOException
* - if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void outputElementContent(Element element, Writer out)
throws IOException {
myProcessor.process(out, myFormat, element.getContent());
out.flush();
}
/**
* This will handle printing out a list of nodes. This can be useful for
* printing the content of an element that contains HTML, like
* "<description>JDOM is <b>fun>!</description>".
*
* @param list
* List
of nodes.
* @param out
* Writer
to use.
* @throws IOException
* - if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(List extends Content> list, Writer out)
throws IOException {
myProcessor.process(out, myFormat, list);
out.flush();
}
/**
* Print out a {@link CDATA}
node.
*
* @param cdata
* CDATA
to output.
* @param out
* Writer
to use.
* @throws IOException
* - if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(CDATA cdata, Writer out) throws IOException {
myProcessor.process(out, myFormat, cdata);
out.flush();
}
/**
* Print out a {@link Text}
node. Perfoms the necessary entity
* escaping and whitespace stripping.
*
* @param text
* Text
to output.
* @param out
* Writer
to use.
* @throws IOException
* - if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(Text text, Writer out) throws IOException {
myProcessor.process(out, myFormat, text);
out.flush();
}
/**
* Print out a {@link Comment}
.
*
* @param comment
* Comment
to output.
* @param out
* Writer
to use.
* @throws IOException
* - if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(Comment comment, Writer out) throws IOException {
myProcessor.process(out, myFormat, comment);
out.flush();
}
/**
* Print out a {@link ProcessingInstruction}
.
*
* @param pi
* ProcessingInstruction
to output.
* @param out
* Writer
to use.
* @throws IOException
* - if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(ProcessingInstruction pi, Writer out)
throws IOException {
myProcessor.process(out, myFormat, pi);
out.flush();
}
/**
* Print out an {@link EntityRef}
.
*
* @param entity
* EntityRef
to output.
* @param out
* Writer
to use.
* @throws IOException
* - if there's any problem writing.
* @throws NullPointerException
* if the specified content is null.
*/
public final void output(EntityRef entity, Writer out) throws IOException {
myProcessor.process(out, myFormat, entity);
out.flush();
}
/*
* ========================================================================
* SpecialCaseMethods for maintaining API Compatibility
* ========================================================================
*/
/**
* Escape any characters in the input string in such a way that the returned
* value is valid as output in an XML Attribute value.
*
* @param str
* the input String to escape
* @return the escaped version of the input String
*/
public String escapeAttributeEntities(String str) {
return DEFAULTPROCESSOR.escapeAttributeEntities(str, myFormat);
}
/**
* Escape any characters in the input string in such a way that the returned
* value is valid as output in an XML Element text.
*
* @param str
* the input String to escape
* @return the escaped version of the input String
*/
public String escapeElementEntities(String str) {
return DEFAULTPROCESSOR.escapeElementEntities(str, myFormat);
}
/*
* ========================================================================
* Basic Support methods.
* ========================================================================
*/
/**
* Returns a cloned copy of this XMLOutputter.
*/
@Override
public XMLOutputter clone() {
// Implementation notes: Since all state of an XMLOutputter is
// embodied in simple private instance variables, Object.clone
// can be used. Note that since Object.clone is totally
// broken, we must catch an exception that will never be
// thrown.
try {
return (XMLOutputter) super.clone();
} catch (java.lang.CloneNotSupportedException e) {
// even though this should never ever happen, it's still
// possible to fool Java into throwing a
// CloneNotSupportedException. If that happens, we
// shouldn't swallow it.
throw new RuntimeException(e.toString());
}
}
/**
* Return a string listing of the settings for this XMLOutputter instance.
*
* @return a string listing the settings for this XMLOutputter instance
*/
@Override
public String toString() {
StringBuilder buffer = new StringBuilder();
buffer.append("XMLOutputter[omitDeclaration = ");
buffer.append(myFormat.omitDeclaration);
buffer.append(", ");
buffer.append("encoding = ");
buffer.append(myFormat.encoding);
buffer.append(", ");
buffer.append("omitEncoding = ");
buffer.append(myFormat.omitEncoding);
buffer.append(", ");
buffer.append("indent = '");
buffer.append(myFormat.indent);
buffer.append("'");
buffer.append(", ");
buffer.append("expandEmptyElements = ");
buffer.append(myFormat.expandEmptyElements);
buffer.append(", ");
buffer.append("lineSeparator = '");
for (char ch : myFormat.lineSeparator.toCharArray()) {
switch (ch) {
case '\r':
buffer.append("\\r");
break;
case '\n':
buffer.append("\\n");
break;
case '\t':
buffer.append("\\t");
break;
default:
buffer.append("[" + ((int) ch) + "]");
break;
}
}
buffer.append("', ");
buffer.append("textMode = ");
buffer.append(myFormat.mode + "]");
return buffer.toString();
}
}