JSONparserを使用してリモートのmySQLデータベースでいくつかの値を取得していましたが、Android 3.0以降(Honeycomb)でテストするまでは正常に機能していました.Android 3.0以降(Honeycomb)では、プロセスがメインスレッドでネットワーク操作を実行できないガーディアンがあります。 .
だから私はAsynctaskが必要であることを発見しました: How to fix android.os.NetworkOnMainThreadException?
そして、このトピックを試しました:
これで、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、非同期が終了する前に変数にアクセスしようとしていると思います。それは「非同期」だからです)
値を取得するにはどうすればよいですか? 何か案は?
どうもありがとう!