我有一个来自 Web 服务器的 xml 字符串,如下所示
<soapenv:Body xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<doLoginResponse xmlns="http://login.mss.uks.com">
<doLoginReturn>
<errorCode>IPH_I_LGN_002</errorCode>
<errorMsg>Logged in sucessfully</errorMsg>
<number>13733479454157901</number>
</doLoginReturn>
</doLoginResponse>
</soapenv:Body>
我想解析 xml 字符串并想打印 errorCode, errorMsg, number 。我该怎么做。
提前致谢。