Java XML Document Format print(Document d)

Here you can find the source of print(Document d)

Description

print

License

Open Source License

Declaration

public static void print(Document d) 

Method Source Code

//package com.java2s;
/*//w w  w. j  a  v  a 2s.  c  om
 * Daisy Pipeline (C) 2005-2008 Daisy Consortium
 * 
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 * 
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 * 
 * You should have received a copy of the GNU Lesser General Public License
 * along with this library; if not, write to the Free Software Foundation, Inc.,
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

import javax.xml.transform.OutputKeys;
import javax.xml.transform.Result;
import javax.xml.transform.Source;
import javax.xml.transform.TransformerConfigurationException;
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.Document;

public class Main {
    public static void print(Document d) {
        try {
            TransformerFactory xformFactory = TransformerFactory
                    .newInstance();
            javax.xml.transform.Transformer idTransform = xformFactory
                    .newTransformer();
            idTransform.setOutputProperty(OutputKeys.INDENT, "yes");
            Source input = new DOMSource(d);
            Result output = new StreamResult(System.err);
            idTransform.transform(input, output);
        } catch (TransformerConfigurationException e) {
            e.printStackTrace();
        } catch (TransformerException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

Related

  1. prettyPrint(Document doc, String programID, String xmlTraDestinationFolderPath)
  2. prettyPrint(final Document aNode)
  3. prettyPrintXml(Document doc)
  4. prettyPrintXml(Document document)
  5. prettyPrintXMLDocument(Node node)
  6. printDoc(Document doc)
  7. printDoc(Document doc, PrintStream pstrm)
  8. printDoctype(Document doc, PrintStream pstrm)
  9. printDocument(Document d)