Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在更新现有的 XML 文档。我必须向根节点添加另一个元素。我需要附加它,但是使用XMLWriter,它会覆盖对象并且所有旧数据都丢失了。如何将另一个节点添加到现有文档?
XMLWriter
也就是追加。我正在使用Dom4j库。
XMLWriter不是要走的路。您可以使用 Node 类及其子类中的方法很容易地追加、删除或以其他方式操作节点。例如:
Element root = document.getRootElement(); Element author = root.addElement("author");