我尝试解析XML时出错

时间:2013-02-28 10:34:45

标签: java android

我在使用XMLParser时遇到一些问题,它会在应用程序打开之前崩溃。我得到的错误是:

错误: org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:137)

以下是我的XMLParser代码:

public class XMLParser {

    public XMLParser(){
    }

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

        try{
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost(url);

            HttpResponse httpResponse = httpClient.execute(httpPost);
            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;
    }

    public Document getDomElement(String xml){
        Document doc = null;

        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();

        try{
            DocumentBuilder db = dbf.newDocumentBuilder();

            InputSource is = new InputSource();
            is.setCharacterStream(new StringReader(xml));
            doc = db.parse(is);
        } catch(ParserConfigurationException e) {
            Log.e("Error: ", e.getMessage());
            return null;
        } catch (SAXException e) {
            Log.e("Error: ", e.getMessage());
            return null;
        } catch (IOException e) {
            Log.e("Error: ", e.getMessage());
            return null;
        }

        return doc;
    }

    public final String getElementValue(Node elem) {
        Node child;

        if(elem != null){
            if(elem.hasChildNodes()){
                for(child = elem.getFirstChild(); child != null; child = child.getNextSibling()){
                    if(child.getNodeType() == Node.TEXT_NODE){
                        return child.getNodeValue();
                    }
                }
            }
        }

        return "";
    }

    public String getValue(Element item, String str){
        NodeList n = item.getElementsByTagName(str);
        return this.getElementValue(n.item(0));
    }

}

在我的主要活动中,我称之为:

XMLParser parser = new XMLParser();
String xml = parser.getXmlFromUrl(URL);
Document doc = parser.getDomElement(xml);

所以,如果你能帮助我,可能会导致这个问题。

2 个答案:

答案 0 :(得分:2)

堆栈跟踪告诉你的确错了:你不应该在UI线程上做网络内容。

好的修复:不要在UI线程上做网络内容,使用AsyncTask或其他。

快速修复:在您的网络内容之前添加:

StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);

请参阅http://www.techblogistech.com/2011/11/how-to-fix-the-android-networkonmainthreadexception/

答案 1 :(得分:0)

你得到android.os.NetworkOnMainThreadException吗?您无法在主活动线程上调用网络API(即httpClient.execute())。相反,您需要在AsyncTask中运行它。如果您需要有关如何完成此操作的帮助,请点击here