作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我们有一个 org.w3c.dom.Document 表示以下 XML:
<Fruits>
<Apples>
<Red/>
<Green/>
</Apples>
</Fruits>
<Fruits>
root 只有一个 child (在这种情况下
<Apples>
,但 child 的名字通常是未知的),我们如何让这个 child 成为一个新的 org.w3c.dom.Document 的根?换句话说,这个新文档应该代表以下 XML:
<Apples>
<Red/>
<Green/>
</Apples>
最佳答案
像这样的东西:
Node apples = doc.getFirstChild().getFirstChild();
//or whatever is your way to find the node to copy
Document newDocument = builder.newDocument();
Node applesCopy = newDocument.importNode(apples, true);
newDocument.appendChild(applesCopy);
关于java - 如何从另一个文档的子集创建一个新文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3109693/
我是一名优秀的程序员,十分优秀!