Groovy 使用 XMLHolder 迭代节点

发布于 2024-12-07 08:31:55 字数 511 浏览 0 评论 0原文

我想使用 XML-Holder 迭代 XML 文件的节点。

def reader = groovyUtils.getXmlHolder(test1 );

假设 XML 如下所示:

<xml>
   <node>
      <val1/>
      <val2/>
   </node1>
   <node>
      <val1/>
      <val2/>
   </node2>
</xml>

我想从不同的节点读取值。 (值1,值2)。 所以我尝试这样做:

for( node in reader.getNodeValues( "//ns1:node" ))
{}

它确实遍历节点,但我不知道如何访问它们内部的值。

非常感谢您的帮助!

约翰

i want to Iterate over Nodes of an XML-File with the XML-Holder.

def reader = groovyUtils.getXmlHolder(test1 );

let's say the XML looks like the following:

<xml>
   <node>
      <val1/>
      <val2/>
   </node1>
   <node>
      <val1/>
      <val2/>
   </node2>
</xml>

i want to read the values from the different nodes. (val1, val2).
So i tried like that:

for( node in reader.getNodeValues( "//ns1:node" ))
{}

It really iterates over the nodes, but i don't know how the get access to the values inside them.

Thanks a lot for your help!

john

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

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

发布评论

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

评论(1

迟月 2024-12-14 08:31:55

您可能希望调用 getDomNodes,而不是 getNodeValues。这将返回类 的标准 Java DOM 节点org.w3c.dom.Node。从那里,您可以从 getFirstChild 开始遍历子节点,并使用 getNextSibling 进行迭代。 Groovy 的 DOMCategory 添加了一些方便的帮助器减轻痛苦的方法。

例如:

use (groovy.xml.dom.DOMCategory) {
    for( node in reader.getDomNodes( "//ns1:node" )) {
        node.children().each { child ->
            println child
        }
    }
}

Instead of getNodeValues, you probably want to call getDomNodes instead. That will return you standard Java DOM nodes of class org.w3c.dom.Node. From there you can traverse the child nodes starting with getFirstChild and iterating with getNextSibling. Groovy's DOMCategory adds some convenient helper methods that make it much less painful.

For example:

use (groovy.xml.dom.DOMCategory) {
    for( node in reader.getDomNodes( "//ns1:node" )) {
        node.children().each { child ->
            println child
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文