如何在JSON解析器中为我的代码编写AsyncTask?
问题描述:
我正在开发一个使用MySQL数据库的登录应用程序。我正在使用数据库包中的JSONParser连接到本地mysql数据库我收到以下错误,请有人帮助我。我搜索了这个错误,但我得到的是使用AsyncTask,但我不知道在哪里使用,如何使用以及Mainthread是什么。 请有人编辑我的代码,并解释或交相关代码... “android.os.NetworkonMainThreadException”当我从运行4.2 genymotion模拟器应用程序的错误...如何在JSON解析器中为我的代码编写AsyncTask?
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;
}
}``
答
我不知道如果我正确地理解你的问题,我想,而添加评论,但我不允许(太低REP)所以这里有云:
该类JSONParser我假设是你正在谈论的“活动”。这不,虽然一个活动,而是一类,所以你可以而创建这个类的一个新对象,并用它从你的呼叫活动:
JSONParser json = new JSONParser();
json.getJSONFromUrl(url,params);
事情是,这样做解析需要时间,主UI线程这可能会暂停线程,甚至可能让应用程序崩溃,如果线程需要超过5秒的响应时间。这意味着你应该使用AsyncTask来运行这个JSONParser方法。开始学习AsyncTask的好地方是Vogella。他在他的网站上有一些很棒的教程。
您可能会使用doInBackground来运行getJSONFromUrl方法,然后从onPostExecute方法更新您的UI线程。所以基本上:使用的AsyncTask
您尝试调用UI线程网络请求你应该这样做在新的线程或的AsyncTask的[android.os.NetworkOnMainThreadException] – 2015-03-02 12:24:26
可能重复(http://stackoverflow.com/questions/6343166 /机器人-OS-networkonmainthreadexception) – 2015-03-02 12:29:58