Java XML String Transform getAsXMLString(final Node node)

Here you can find the source of getAsXMLString(final Node node)

Description

Transforms an org.w3c.dom.Document into a String

License

Apache License

Parameter

Parameter Description
node Document to transform

Exception

Parameter Description
TransformerException TransformerException

Return

String representation of node

Declaration

public static String getAsXMLString(final Node node) throws TransformerException 

Method Source Code

//package com.java2s;
/*/*from   ww w . ja va  2  s.c  o m*/
 * Copyright (c) 2006-2013 by Public Library of Science
 *
 * http://plos.org
 * http://ambraproject.org
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.StringWriter;

import javax.xml.transform.OutputKeys;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;

import org.w3c.dom.Node;

public class Main {
    /**
     * Transforms an org.w3c.dom.Document into a String
     *
     * @param node Document to transform
     * @return String representation of node
     * @throws TransformerException TransformerException
     */
    public static String getAsXMLString(final Node node) throws TransformerException {
        final Transformer tf = TransformerFactory.newInstance().newTransformer();
        final StringWriter stringWriter = new StringWriter();

        tf.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");
        tf.transform(new DOMSource(node), new StreamResult(stringWriter));

        return stringWriter.toString();
    }
}

Related

  1. escapeBackslashes(String value)
  2. extractAndNormalizeEmbedPictures(String xmlFile, String odtFile, String parentDir, String imgBaseDir)
  3. extractElement(String xml, String tagName)
  4. extractText(Node n, StringBuffer buf)
  5. fileToXMLString(String filename)
  6. getBeanDefinition(String beanId, File file)
  7. getConfigurationAsXML(Map properties)
  8. getHtmlAsString(Node node)
  9. getIntegerAttribute(XMLStreamReader in, String attribute)