android xml SOAP响应

时间:2015-03-17 07:13:46

标签: android xml web-services parsing soap

我从.NET SOAP服务器返回了以下SOAP响应。

(<?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>
        <GetCategoriesIMFollowing_WithTokenResponse xmlns="http://tempuri.org/">
            <GetCategoriesIMFollowing_WithTokenResult>8,9,10,11,12,2</GetCategoriesIMFollowing_WithTokenResult>
        </GetCategoriesIMFollowing_WithTokenResponse>
    </soap:Body>
</soap:Envelope>).

我需要解析它以获得整数(8,9,10,11,12,2)

获取这些数字的最简单方法是什么?

提前致谢。

1 个答案:

答案 0 :(得分:0)