java document元素复制_如何使用Java将DOM节点从一个文档复制到另一个文档?

本文详细解释了在DOM操作中如何正确复制和导入节点,包括使用`cloneNode()`和`importNode()`方法。通过这两个步骤,可以确保新节点在目标文档中正确存在而不影响源文档。示例代码展示了如何实现深拷贝并插入到新文档的适当位置,这对于处理复杂的DOM结构至关重要。
摘要由CSDN通过智能技术生成

小编典典

问题在于,节点的上下文包含许多内部状态,其中包括其父项和拥有它们的文档。无论是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 Document 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);

}

在true对参数cloneNode()和importNode()指定是否需要深拷贝,这意味着复制节点和所有它的孩子。由于您有99%的时间想要复制整个子树,因此几乎总是希望这是事实。

2020-09-26

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值