Java 将 XML 文档附加到现有文档

2022-09-02 20:16:57

我有两个已创建的 XML 文档,我想将这两个文档合并到一个新信封中。所以我有

<alert-set>
  <warning>National Weather Service...</warning>
  <start-date>5/19/2009</start-date>
  <end-date>5/19/2009</end-date>
</alert-set>

 <weather-set>
   <chance-of-rain type="percent">31</chance-of-rain>
   <conditions>Partly Cloudy</conditions>
   <temperature type="Fahrenheit">78</temperature>
 </weather-set>

我想做的是在根节点中将两者组合在一起:< DataSet>组合的文档< /DataSet>

我尝试创建一个临时文档,并将子级替换为文档的根节点:

<DataSet>
  <blank/>
  <blank/>
</DataSet>

我希望用两个文档的根元素替换这两个空白,但我得到“WRONG_DOCUMENT_ERR:节点用于与创建它的文档不同的文档中。我尝试采用和导入根节点,但我得到同样的错误。

难道没有一些简单的方法来组合文档而不必通读并为每个节点创建新元素吗?

编辑:示例代码片段 现在只是尝试将一个移动到“空白”文档...importNode 和 adoptNode 函数无法导入/采用 Document 节点,但它们无法导入元素节点及其子树...或者如果是这样,它似乎不适用于附加/替换。

    Document xmlDoc;     //created elsewhere
    Document weather = getWeather(latitude, longitude);
    Element weatherRoot = weather.getDocumentElement();

    Node root = xmlDoc.getDocumentElement();
    Node adopt = weather.adoptNode(weatherRoot);
    Node imported = weather.importNode(weatherRoot, true);
    Node child = root.getFirstChild();

    root.replaceChild(adopt, child);      //initially tried replacing the <blank/> elements
    root.replaceChild(imported, child);

    root.appendChild(adopt);
    root.appendChild(imported);
    root.appendChild(adopt.cloneNode(true));

所有这些都抛出了DOMException:WRONG_DOCUMENT_ERR:节点用于与创建它的文档不同的文档中。

我想我必须弄清楚如何使用stax,或者只是重新阅读文档并创建新元素......不过,仅仅为了合并文档,这似乎有点太多了。


答案 1

这有点棘手,但以下示例运行:

public static void main(String[] args) {

    DocumentImpl doc1 = new DocumentImpl();
    Element root1 = doc1.createElement("root1");
    Element node1 = doc1.createElement("node1");
    doc1.appendChild(root1);
    root1.appendChild(node1);

    DocumentImpl doc2 = new DocumentImpl();
    Element root2 = doc2.createElement("root2");
    Element node2 = doc2.createElement("node2");
    doc2.appendChild(root2);
    root2.appendChild(node2);

    DocumentImpl doc3 = new DocumentImpl();
    Element root3 = doc3.createElement("root3");
    doc3.appendChild(root3);

    // root3.appendChild(root1); // Doesn't work -> DOMException
    root3.appendChild(doc3.importNode(root1, true));

    // root3.appendChild(root2); // Doesn't work -> DOMException
    root3.appendChild(doc3.importNode(root2, true));   
}

答案 2

我知道你已经解决了这个问题,但我仍然想使用我目前正在测试的XOM库(与这个问题相关)来解决这个问题,并且在这样做的同时,提供一种与Andreas_D的答案不同的方法。

(为了简化此示例,我将你的 和 放入单独的文件中,并将其读入 nu.xom.Document 实例中。<alert-set><weather-set>

import nu.xom.*;

[...]

Builder builder = new Builder();
Document alertDoc = builder.build(new File("src/xomtest", "alertset.xml"));
Document weatherDoc = builder.build(new File("src/xomtest", "weatherset.xml"));
Document mainDoc = builder.build("<DataSet><blank/><blank/></DataSet>", "");

Element root = mainDoc.getRootElement();
root.replaceChild(
    root.getFirstChildElement("blank"), alertDoc.getRootElement().copy());
root.replaceChild(
    root.getFirstChildElement("blank"), weatherDoc.getRootElement().copy());

关键是要插入的元素的副本 ;否则,你会得到一个抱怨“孩子已经有了父母”。mainDoc

输出主Doc现在给出:

<?xml version="1.0" encoding="UTF-8"?>
<DataSet>
    <alert-set>
        <warning>National Weather Service...</warning>
        <start-date>5/19/2009</start-date>
        <end-date>5/19/2009</end-date>
    </alert-set>
    <weather-set>
        <chance-of-rain type="percent">31</chance-of-rain>
        <conditions>Partly Cloudy</conditions>
        <temperature type="Fahrenheit">78</temperature>
    </weather-set>
</DataSet>

令我高兴的是,事实证明这与XOM非常直接。写这篇文章只花了几分钟,尽管我对图书馆还不是很有经验。(如果没有这些元素,即从简单的开始,它会更容易。<blank/><DataSet></DataSet>

因此,除非您有令人信服的理由仅使用标准JDK工具,否则我强烈建议您尝试XOM,因为它可以使Java中的XML处理更加愉快。