如何从现有的构建器节点构建新的文档构建器?

发布于 2024-10-11 09:14:08 字数 643 浏览 7 评论 0原文

我有以下代码:

DocumentBuilderFactory dbFactory_ = DocumentBuilderFactory.newInstance();
Document doc_;
DocumentBuilder dBuilder = dbFactory_.newDocumentBuilder();
StringReader reader = new StringReader(s);
InputSource inputSource = new InputSource(reader);
doc_ = dBuilder.parse(inputSource);
doc_.getDocumentElement().normalize();

然后遍历 doc_ 以获取特定节点。然后我想用该节点创建一个新的 dBuilder。到目前为止,我一直在尝试将节点转换为字符串,然后使用 dBuilder.parse 字符串,但收效甚微,但这并没有起作用,因为我遇到了命名空间问题,并且其他事情。

<Random>
  <Fixed></Fixed>
</Random>

因此,我将取出 节点并创建一个全新的类,其中它是根节点。

I have the following code:

DocumentBuilderFactory dbFactory_ = DocumentBuilderFactory.newInstance();
Document doc_;
DocumentBuilder dBuilder = dbFactory_.newDocumentBuilder();
StringReader reader = new StringReader(s);
InputSource inputSource = new InputSource(reader);
doc_ = dBuilder.parse(inputSource);
doc_.getDocumentElement().normalize();

and then I traverse doc_ in order to get a specific node. I would then like to create a new dBuilder with that node. What I've been trying so far with little success is to convert my node to a string and then have the dBuilder.parse the string but that has not been working because I'm running into namespace problems and other things.

<Random>
  <Fixed></Fixed>
</Random>

So with this I would take the <Fixed> node out and create a completely new class where it is the root node.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森末i 2024-10-18 09:14:08

创建一个新文档,然后将您的节点导入其中,如下所示:

Document otherDoc = dBuilder.newDocument();
Node importedNode = otherDoc.importNode(myNode, true);
otherDoc.appendChild(importedNode);

Create a new document and then import your node into it, as shown below:

Document otherDoc = dBuilder.newDocument();
Node importedNode = otherDoc.importNode(myNode, true);
otherDoc.appendChild(importedNode);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文