Groovy - XmlSlurper - 将属性读入Map

时间:2014-04-30 15:10:42

标签: xml groovy xmlslurper

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

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

感谢。

1 个答案:

答案 0 :(得分:7)

假设:

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

您可以这样做:

def attrmap = new XmlSlurper().parseText( xml ).attributes()