Wraps up the nastiness that is the Java XML transformation API for doing an identity transform, which allows an XML document to be converted to a string. - Java XML

Java examples for XML:XML Transform

Description

Wraps up the nastiness that is the Java XML transformation API for doing an identity transform, which allows an XML document to be converted to a string.

Demo Code

/*/*from  w  ww.  j  a va  2  s.  c om*/
 * ElementNode
 * by Keith Gaughan <kmgaughan@eircom.net>
 *
 * Copyright (c) Keith Gaughan, 2006. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Common Public License v1.0, which accompanies this
 * distribution and is available at http://www.opensource.org/licenses/cpl1.0.php
 */
import java.io.StringWriter;
import java.util.Arrays;
import javax.xml.parsers.*;
import javax.xml.transform.*;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import org.w3c.dom.Document;
import org.w3c.dom.Node;

public class Main{
    /**
     * Wraps up the nastiness that is the Java XML transformation API for
     * doing an identity transform, which allows an XML document to be
     * converted to a string.
     *
     * @param  source  Document source to convert.
     * @param  result  Object to which transformation is written.
     */
    public static void transform(final Source source, final Result result) {
        final TransformerFactory tf;
        final Transformer t;

        try {
            tf = TransformerFactory.newInstance();
            t = tf.newTransformer();
            t.transform(source, result);
        } catch (Exception ex) {
            // Should *never* happen, but...
            throw new XmlException(
                    "Could not do identity transform on XML document.", ex);
        }
    }
}

Related Tutorials