6
<racebet amount="8.89" id="6852465" bettype="K" instance="1" type="csf" />

创建包含作为键的属性和相应值的映射的最佳方法是什么?

谢谢。

4

1 回答 1

7

鉴于:

def xml = '<racebet amount="8.89" id="6852465" bettype="K" instance="1" type="csf" />'

你可以简单地做:

def attrmap = new XmlSlurper().parseText( xml ).attributes()
于 2014-04-30T15:12:31.293 回答