0

我正在使用这种方法从远程服务器获取 xml 文件,我使用另一个解析器类对其进行解析,并且解析成功。但是,当我Log.d("get xml", xml)用来检查 xml 文件的内容时,它只显示<?xml version="1.0" standalone="no"?>在 logCat 中。为什么?

public String getXmlFromUrl(String url) {
    String xml = null;

    try {
        // defaultHttpClient

        DefaultHttpClient httpClient = new DefaultHttpClient();
        HttpPost httpPost = new HttpPost(url);
        if(httpPost != null){
            Log.d("httpPost", "httpPost not null");
        }
        HttpResponse httpResponse = httpClient.execute(httpPost);
        if(httpResponse != null){
            Log.d("httpResponse", "httpResponse not null");
        }
        HttpEntity httpEntity = httpResponse.getEntity();
        xml = EntityUtils.toString(httpEntity);

    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    } catch (ClientProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
    // return XML
    Log.d("get xml", xml);
    if(xml!=null){
        Log.d("get http client", "get http client not null");
    }
    return xml;
}
4

1 回答 1

0

我认为问题不在于请求,而在于 LogCat 中的输出。分别记录每一行获得所需的完整响应!。

因此,通过在调试模式下应用断点来检查这一点。可能对你有帮助。

于 2012-12-16T08:02:34.273 回答