所以我有一个看起来像这样的xml soap消息:

...
<FinalValueFee1 currencyID="USD">8.0</FinalValueFee>
<FinalValueFee2 currencyID="ILS">6.0</FinalValueFee>
<FinalValueFee3 currencyID="EUR">1.0</FinalValueFee>
<FinalValueFee4 currencyID="USD">4.0</FinalValueFee>
...


设置SOAPMessageSOAPBody的对象后,我可以通过以下方法拾取每个元素的值:

SOAPBody m_soapBody.getElementsByTagName("FinalValueFee1").item(0).getTextContent();


我应该如何为每一个选择currencyID

最佳答案

m_soapBody.getElementsByTagName("FinalValueFee1").item(0)返回一个Node对象。在此对象下可以使用的各种方法可以在此处查看:

http://docs.oracle.com/javase/7/docs/api/org/w3c/dom/Node.html

通过查看文档,以下任意一项都应获得您想要的价值:

    node.getAttributes().getNamedItem("currencyID").getNodeValue();
    node.getAttributes().getNamedItem("currencyID").getTextContent();

10-06 09:54