Java XML Node to String xmlToString(Node doc)

Here you can find the source of xmlToString(Node doc)

Description

xml To String

License

Apache License

Declaration

public static String xmlToString(Node doc) 

Method Source Code


//package com.java2s;
/*//from   www  .j a  va2  s. co m
 * Copyright 2012 LIG SIGMA
 *
 * 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 org.w3c.dom.Node;

import javax.xml.transform.*;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;

import java.io.StringWriter;

public class Main {
    public static String xmlToString(Node doc) {
        try {
            DOMSource domSource = new DOMSource(doc);
            StringWriter writer = new StringWriter();
            StreamResult result = new StreamResult(writer);
            TransformerFactory tf = TransformerFactory.newInstance();
            Transformer transformer = tf.newTransformer();
            transformer.setOutputProperty(OutputKeys.INDENT, "yes");
            transformer.transform(domSource, result);
            return writer.toString();
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
}

Related

  1. XML2String(Node node)
  2. xmlToBytes(final Node body)
  3. XmlToSource(Node node)
  4. xmlToStream(Node n, OutputStream os)
  5. xmlToStreamE(Node n, OutputStream os)
  6. xmlToString(Node doc)
  7. xmlToString(Node node)
  8. xmlToString(Node node)
  9. xmlToString(Node node)