本文介绍了在 Android 应用程序中解析 XML 响应的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在我的应用程序中使用 SAX PArser 解析 XML 响应,我不知道该怎么做,所以请有人指导我正确的路径.

I want to Parse the XML Response in my Application using a SAX PArser, I don't know how to do that, So Can anybody please giude me to the right path.

一个带有一点编码或链接的例子就可以了.谢谢,大卫

An example with a little coding or a link will be OK.Thanks,david

推荐答案

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 解析器解析.

"content" will be the string of XML format, parse it using XML pull parser.

这篇关于在 Android 应用程序中解析 XML 响应的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 13:01