我想以JSON
. 首先,它运行良好,但现在我不得不更改类以用于AsyncTask
进行一些网络操作,因为我遇到了这个android.os.NetworkOnMainThreadException
问题,解决方案是使用AsyncTask
. 但是,我遇到了构造函数UrlEncodedFormEntity(List<NameValuePair>[])
未定义的问题。那么,我应该在这堂课中改变什么?
我的代码:
public class JSONParser extends AsyncTask<List<NameValuePair>, Void, String> {
private static String registerURL = "http://sit-edu4.sit.kmutt.ac.th/csc498/53270327/Boss/sftrip/index.php/register";
static InputStream is = null;
static JSONObject jObj = null;
static String json = "";
protected String doInBackground(List<NameValuePair>... params) {
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(registerURL);
// Making HTTP request
try {
// defaultHttpClient
httpPost.setEntity(new UrlEncodedFormEntity(params));
HttpResponse httpResponse = httpClient.execute(httpPost);
StatusLine statusLine = httpResponse.getStatusLine();
int statusCode = statusLine.getStatusCode();
if (statusCode == 200) {
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
} else {
Log.e("Log", "Failed to download result..");
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
if (is != null) {
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);
} else {
Log.e("Log", "Something wrong with IS");
}
} catch (Exception e) {
Log.e("Buffer Error", "Error converting result " + e.toString());
}
return json;
}
}