Asynctask + JSON(如何获取一些值)

时间:2013-09-25 18:14:38

标签: android json android-asynctask


我正在使用JSONparser来获取远程mySQL数据库中的一些值,这一点工作正常,直到我在Android 3.0+(Honeycomb)中测试它,其中 Guardian 不允许进程执行主线程上的网络操作。

所以我发现我需要一个 Asynctask How to fix android.os.NetworkOnMainThreadException?


并尝试了这个主题:

Get returned JSON from AsyncTask

Return JSON Array from AsyncTask

How to return data from asynctask


好吧,现在我知道asynctask不能返回值,但我需要得到这个json值,因为我在不同的活动中多次调用 等待处理和/或者在屏幕上显示信息(这就是为什么我不能在OnPostExecute中执行此操作,我猜)。


以下是我的旧JsonParser的一些改编。

JSONParser.java

public class JSONParser extends AsyncTask<List<NameValuePair>, Void, JSONObject> {

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

    private static String jsonURL = "http://192.168.1.119/Server/db/json/";

    private ProgressDialog progressDialog;

    // constructor
    public JSONParser() {

    }

    @Override
    protected void onPreExecute() {
        //progressDialog = new ProgressDialog();
        progressDialog.setMessage("Aguarde...");
        progressDialog.show();
    }

    protected JSONObject doInBackground(List<NameValuePair>... params) {

        // Making HTTP request
        try {

            // defaultHttpClient
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost(jsonURL);
            httpPost.setEntity(new UrlEncodedFormEntity(params[0]));

            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();
        } catch (Exception 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;

    }


    protected void onPostExecute(JSONObject jObj) {

        result = jObj;
        progressDialog.dismiss();

    }

    public JSONObject getJson(List<NameValuePair> params){

        this.execute(params);

        return result;

    }

}


UserFunctions.java (有些调用示例)

(...)

public UserFunctions(){
    JSONParser jsonParser = new JSONParser();
}

public JSONObject loginUser(String email, String password){
    List<NameValuePair> params = new ArrayList<NameValuePair>();
    params.add(new BasicNameValuePair("tag", login_tag));
    params.add(new BasicNameValuePair("email", email));
    params.add(new BasicNameValuePair("password", password));

    JSONObject json = jsonParser.getJson(params);
    //JSONObject json = jsonParser.execute(params); //doesn't return
    return json;
}
public JSONObject listProjects(String email){
    List<NameValuePair> params = new ArrayList<NameValuePair>();
    params.add(new BasicNameValuePair("tag", list_projects));
    params.add(new BasicNameValuePair("email", email));

    JSONObject json = jsonParser.getJson(params);
    return json;
}

public JSONObject setDisp(String dispID, String disp, String comment){
    List<NameValuePair> params = new ArrayList<NameValuePair>();
    params.add(new BasicNameValuePair("tag", set_disp));
    params.add(new BasicNameValuePair("dispID", dispID));
    params.add(new BasicNameValuePair("disp", disp));
    params.add(new BasicNameValuePair("comment", comment));

    JSONObject json = jsonParser.getJson(params);
    return json;
}

(...)



我试图将值传递给var(JSONObject结果),但没有效果。 (NullPointerException,我想它会在异步完成之前尝试访问var,因为,好吧,它是“异步”)

我需要做些什么才能获得价值?有什么想法吗?


非常感谢你们!

1 个答案:

答案 0 :(得分:1)

习惯使用AsyncTask,你需要它很多。

如果您在任务完成时需要触发某些内容,则播放。所有感兴趣的人(包括其他活动)都需要为广播注册接收者。

您的AsyncTask

new AsyncTask<Void,Void,List<Result>>() {
  @Override
  public List<Result> doInBackground(Void... voids) {
    final List<Result> results = ...; // get from network, or whatever
  }

  @Override
  public void onPostExecute(List<Result> results) {
    Intent intent = new Intent("com.my.action.RESULTS_READY"); // or whatever
    intent.putExtra("com.my.extra.RESULTS", new ArrayList<Result>(results);
    sendBroadcast(intent);
  }
}.execute();

现在,在您的其他活动中,在onCreate()onDestroy()中注册/取消注册。我假设你想在暂停时接收广播并更新一些实例数据。

请注意还有其他选择。例如,您可以将结果写入DB,然后仅广播结果已准备就绪并期望每个感兴趣的人在他们想要时从数据库中检索它们。这可能会更好,因为它不依赖于接收广播来获得有效数据(这也是一个较长的例子,所以我会给你留下这个乐趣)。