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

时间:2009-05-19 17:11:08

标签: java xml merge append

我创建了两个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>

我想要做的是将两者结合在根节点内:&lt;数据集&GT;合并文档&lt; /数据集&GT;

我尝试创建临时文档并用文档的根节点替换子项:

<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或者只是重新阅读文档并创建新元素......但是,为了合并文档,这似乎太多了。

2 个答案:

答案 0 :(得分:29)

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

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));   
}

答案 1 :(得分:7)

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

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

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的元素;否则你会抱怨“孩子已经有了父母”。

现在输出mainDoc给出:

<?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处理更加愉快。