Groovy XML 解析器美元符号属性 $

发布于 2024-10-24 02:08:49 字数 424 浏览 0 评论 0原文

我正在使用 XMLParser 解析具有以下结构的 xml 文档:

<Tag>
    <SubTag att1="some.directory.structure.ClassName$InternalClass" att2="value2"/>
</Tag>

我试图将 att1 的值存储在字符串中:

def att1Value = root.Tag[0].iterator().toList()[0]['@att1']

但是,当我读取 att1Value 时,它​​的值是“some.directory.struct.ClassName”。 Groovy 是否将 $InternalClass 视为变量?如何获取 att1 的全部值?

谢谢。

I am using XMLParser to parse an xml document that has the following structure:

<Tag>
    <SubTag att1="some.directory.structure.ClassName$InternalClass" att2="value2"/>
</Tag>

I am trying to store the value of att1 in a String with:

def att1Value = root.Tag[0].iterator().toList()[0]['@att1']

However, when I read att1Value, it's value is "some.directory.structure.ClassName". Is Groovy treating the $InternalClass as a variable? How do I capture the whole value of att1?

Thanks.

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

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

发布评论

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

评论(1

我不咬妳我踢妳 2024-10-31 02:08:49

这段代码:

xml = '''<Tag>
    <SubTag att1="some.directory.structure.ClassName$InternalClass" att2="value2"/>
</Tag>'''

root = new XmlParser().parseText( xml )

att1value = root.SubTag[0].@att1

给我结果

"some.directory.structure.ClassName$InternalClass"

This code:

xml = '''<Tag>
    <SubTag att1="some.directory.structure.ClassName$InternalClass" att2="value2"/>
</Tag>'''

root = new XmlParser().parseText( xml )

att1value = root.SubTag[0].@att1

Gives me the result

"some.directory.structure.ClassName$InternalClass"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文