0
我有一個這樣的XML:Groovy中解析XML和獲取屬性
<MMP>
<MERCHANT>
<RESPONSE>
<url>http://203.114.240.77/paynetz/epi/fts</url>
<param name="ttype"></param>
<param name="tempTxnId"></param>
</RESPONSE>
</MERCHANT>
</MMP>
我怎麼能得到的ttype
和tempTxnId
值。我試過了:
def details = new XmlParser().parseText(response)
details.MMP.RESPONSE //which returns the whole xml itself rather than its contents
我在哪裏犯錯?
在此先感謝。