如何从 Java 中的 DOM 中检索现有元素中的特定元素(或节点列表)

发布于 2024-12-05 02:38:32 字数 571 浏览 0 评论 0原文

我正在尝试解析一个包含多个名为 A 的记录的 XML 文件。每个 A 都有多个名为 B 的组记录。 B 中的各个记录的名称为 xyz

我的问题是:

  • 如何导航到 B 以及
  • 如何在循环中获取 x 的所有值。

DOM 设置为文档(即名称为“A”的元素)

我正在使用 Java 中的 DOM 解析器。

记录样本:

<A>
  <B><x>123</x><y>asdf</y><z>A345</z></B>
  <B><x>987</x><y>ytre</y><z>Z959</z></B>
</A>

I am trying to parse an XML file which contains multiple records of name A. Each A has multiple group records with name B . The various records within B have names x, y and z.

My questions are:

  • How do I navigate to B and
  • how do I obtain all values of x in loop.

The DOM is set to the document (i.e. elements of name "A")

I am using a DOM parser in Java.

Sample record:

<A>
  <B><x>123</x><y>asdf</y><z>A345</z></B>
  <B><x>987</x><y>ytre</y><z>Z959</z></B>
</A>

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

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

发布评论

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

评论(2

只想待在家 2024-12-12 02:38:32
    Document yourDom = ....;

    XPathFactory xpf = XPathFactory.newInstance();
    XPath xp = xpf.newXPath();

    XPathExpression xpe = xp.compile("//A/B/*");
    NodeList nodes = (NodeList) xpe.evaluate(yourDom, XPathConstants.NODESET);
    Document yourDom = ....;

    XPathFactory xpf = XPathFactory.newInstance();
    XPath xp = xpf.newXPath();

    XPathExpression xpe = xp.compile("//A/B/*");
    NodeList nodes = (NodeList) xpe.evaluate(yourDom, XPathConstants.NODESET);
仅此而已 2024-12-12 02:38:32

除了直接使用标准 DOM API(对于这些任务来说通常有点冗长)之外,您还可以使用 jOOX< /a> 作为 DOM 的 jquery 类包装器。这是如何使用它的示例:

// Loop over all x element values within B using css-style selectors
for (String x : $(document).find("B x").texts()) {
  // ...
}

// Loop over all x element values within B using XPath
for (String x : $(document).xpath("//B/x").texts()) {
  // ...
}

// Loop over all x element values within B using the jOOX API
for (String x : $(document).find("B").children("x").texts()) {
  // ...
}

Apart from using the standard DOM API directly which is usually a bit verbose for these tasks, you could also use jOOX as a jquery-like wrapper for DOM. Here's an example how to use it:

// Loop over all x element values within B using css-style selectors
for (String x : $(document).find("B x").texts()) {
  // ...
}

// Loop over all x element values within B using XPath
for (String x : $(document).xpath("//B/x").texts()) {
  // ...
}

// Loop over all x element values within B using the jOOX API
for (String x : $(document).find("B").children("x").texts()) {
  // ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文