将DOM文档写入XML文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将DOM文档写入XML文件相关的知识,希望对你有一定的参考价值。
// This method writes a DOM document to a file try { // Prepare the DOM document for writing Source source = new DOMSource(doc); // Prepare the output file Result result = new StreamResult(file); // Write the DOM document to the file Transformer xformer = TransformerFactory.newInstance().newTransformer(); xformer.transform(source, result); } catch (TransformerConfigurationException e) { } catch (TransformerException e) { } }
以上是关于将DOM文档写入XML文件的主要内容,如果未能解决你的问题,请参考以下文章