问题在于Node包含许多关于其上下文的内部状态,其中包括它们的父系和它们所属的文档。既不将新节点放在目标文档中的任意位置,这就是代码失败的原因。adoptChild()
importNode()
由于您要复制节点而不是将其从一个文档移动到另一个文档,因此您需要执行三个不同的步骤...
- 创建副本
- 将复制的节点导入目标文档
- 将复制的内容放在新文档中的正确位置
for(Node n : nodesToCopy) {
// Create a duplicate node
Node newNode = n.cloneNode(true);
// Transfer ownership of the new node into the destination document
newDoc.adoptNode(newNode);
// Make the new node an actual item in the target document
newDoc.getDocumentElement().appendChild(newNode);
}
Java 文档 API 允许您使用 组合前两个操作。importNode()
for(Node n : nodesToCopy) {
// Create a duplicate node and transfer ownership of the
// new node into the destination document
Node newNode = newDoc.importNode(n, true);
// Make the new node an actual item in the target document
newDoc.getDocumentElement().appendChild(newNode);
}
参数 on 和 指定是否要深层复制,这意味着复制节点及其所有子节点。由于99%的时间你想要复制整个子树,你几乎总是希望这是真的。true
cloneNode()
importNode()