<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><loginResponse xmlns="https://comm1.get.com/"><loginResult>true</loginResult><result>success</result></loginResponse></soap:Body></soap:Envelope>
有没有办法解析包含xml数据的字符串?
我希望结果成功
答案 0 :(得分:1)
这是一个SOAP响应,您可能想尝试使用此库:http://ksoap2.sourceforge.net/
它声称对手机等小型/有限环境非常有用。
如果你可以使用它,那么就不需要在SAX,DOM,Xmlpull等中编写另一个解析器了。
答案 1 :(得分:0)
由于你有一个非常小的xml来解析它更好,在这里使用dom parser 另请参阅SAXParser