解析Android应用程序中的XML响应

时间:2010-09-14 07:23:26

标签: android xml xml-parsing

我想使用SAX PArser解析我的应用程序中的XML响应,我不知道该怎么做,所以任何人都可以请我走正确的道路。

使用少量编码或链接的示例就可以了。 谢谢, 大卫

1 个答案:

答案 0 :(得分:1)

try {
        HttpClient client = new DefaultHttpClient();
        String getURL = <URL>;
        HttpGet get = new HttpGet(getURL);
        HttpResponse responseGet = client.execute(get);
         mResEntityGet = responseGet.getEntity();
        if (mResEntityGet != null) {
            //do something with the response
            content = EntityUtils.toString(mResEntityGet);
        }
    } catch (Exception e) {
        e.printStackTrace();
    }

“content”将是XML格式的字符串,使用XML pull解析器解析它。