Java tutorial
//package com.java2s; import java.io.File; import javax.xml.transform.OutputKeys; import javax.xml.transform.Result; import javax.xml.transform.Source; import javax.xml.transform.Transformer; 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 { /** * <p> * This method writes a DOM document to a file * </p>. * * @param doc * The DOM document to write. * @param filename * The filename to write the DOM document to. */ public static void writeXmlFile(Document doc, String filename) throws Exception { // Prepare the output file File file = new File(filename); Result result = new StreamResult(file); transform(doc, result); } private static void transform(Document doc, Result result) throws Exception { try { // Prepare the DOM document for writing Source source = new DOMSource(doc); // Write the DOM document to the file Transformer xformer = TransformerFactory.newInstance().newTransformer(); xformer.setOutputProperty(OutputKeys.INDENT, "yes"); xformer.transform(source, result); } catch (TransformerConfigurationException e) { e.printStackTrace(); throw e; } catch (TransformerException e) { e.printStackTrace(); throw e; } catch (Exception e) { e.printStackTrace(); throw e; } } }