如何在JSON解析器中为我的代码编写AsyncTask?

时间:2015-03-02 12:22:02

标签: android mysql eclipse exception android-activity

我正在使用MySQL数据库开发一个登录应用程序。我正在使用数据库包中的JSONParser连接到本地mysql数据库我收到以下错误请一些人帮助我。我搜索了这个错误但我得到的是使用AsyncTask但我不知道在哪里使用以及如何使用以及什么是Mainthread也。 请有人编辑我的代码并解释或发布相关代码...... 当我从4.2 genymotion模拟器运行应用程序时,“ android.os.NetworkonMainThreadException ”是错误...

package com.android.database;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.util.List;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONException;
import org.json.JSONObject;

import android.util.Log;

public class JSONParser {

    static InputStream is = null;
    static JSONObject jObj = null;
    static String json = "";

    // constructor
    public JSONParser() {

    }

    public JSONObject getJSONFromUrl(String url, List<NameValuePair> params) {

        // Making HTTP request
        try {
            // defaultHttpClient
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost(url);
            httpPost.setEntity(new UrlEncodedFormEntity(params));

            HttpResponse httpResponse = httpClient.execute(httpPost);
            HttpEntity httpEntity = httpResponse.getEntity();
            is = httpEntity.getContent();

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    is, "iso-8859-1"), 8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            is.close();
            json = sb.toString();
            Log.e("JSON", json);
        } catch (Exception e) {
            Log.e("Buffer Error", "Error converting result " + e.toString());
        }

        // try parse the string to a JSON object
        try {
            jObj = new JSONObject(json);            
        } catch (JSONException e) {
            Log.e("JSON Parser", "Error parsing data " + e.toString());
        }

        // return JSON String
        return jObj;

    }
}``

3 个答案:

答案 0 :(得分:0)

网络操作必须在后台完成

您可以使用AsyncTask来完成此任务。

答案 1 :(得分:0)

您正在UI线程上执行网络操作,但您无法执行此操作。考虑使用AsyncTask来执行此类操作,或使用像this这样的外部库,它允许您以非常简单的方式异步发出Http请求。

答案 2 :(得分:0)

我不确定我是否正确理解了你的问题,我想补充一条评论,但我不允许(代表太低)所以这就是:

这个类JSONParser我假设是&#34;活动&#34;你在说什么。这不是一个活动,而是一个类,所以你宁可创建一个这个类的新对象,并在你的调用活动中使用它:

JSONParser json = new JSONParser();
json.getJSONFromUrl(url,params);

事实上,执行此解析将花费时间并且在主UI线程上这可能会暂停线程,甚至可能让应用程序崩溃,如果线程需要超过5秒的时间来响应。这意味着您应该使用AsyncTask来运行此JSONParser方法。学习AsyncTask的好地方是Vogella。他的网站上有一些很棒的教程。

您可能会使用doInBackground来运行getJSONFromUrl方法,然后从onPostExecute方法更新UI线程。所以基本上:使用AsyncTask