将DOM文档写入XML文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将DOM文档写入XML文件相关的知识,希望对你有一定的参考价值。

  1. e518. Writing a DOM Document to an XML File
  2.  
  3. // This method writes a DOM document to a file
  4. public static void writeXmlFile(Document doc, String filename) {
  5. try {
  6. // Prepare the DOM document for writing
  7. Source source = new DOMSource(doc);
  8.  
  9. // Prepare the output file
  10. File file = new File(filename);
  11. Result result = new StreamResult(file);
  12.  
  13. // Write the DOM document to the file
  14. Transformer xformer = TransformerFactory.newInstance().newTransformer();
  15. xformer.transform(source, result);
  16. } catch (TransformerConfigurationException e) {
  17. } catch (TransformerException e) {
  18. }
  19. }

以上是关于将DOM文档写入XML文件的主要内容,如果未能解决你的问题,请参考以下文章

matlab xml文件交互

Python基于 DOM 的 XML 文档写入(xml.dom.minidom)

在 Android 上编写 XML

Java中XML文件的读取与写入

笔记:XML-解析文档-DOM

XML 解析