0

私はグーグルを検索し、これを機能させるためにさまざまな方法を実装してきましたが、メモリから削除するキー->値を取得できないようです。私が達成しようとしているのは、サーバーにリクエストを送信したときにネットワークエラーとして返されるよりも、サーバーの再起動など、サーバーで何かが発生した場合です。サーバーを停止してリクエストするとうまくいきます。しかし、サーバーを起動してリクエストを送信すると、良好な結果が得られます。サーバーを強制終了して戻るよりも、以前の結果が保持されるため、問題は発生しません。それが十分に明確であることを願っています。私のコードの例は次のとおりです。

  JSONObject json;
  json = MF.geoLocal(address, city, state, postal);
        try {
              if(json == null || json.isNull("status")){
                    PopIt(getString(R.string.alert_network_error));
              } else {
                    if(json.getString("status").equals("OK")){
                          address = json.getString("address");
                          city = json.getString("city");
                          county = json.getString("county");
                          state = json.getString("state");
                          postal = json.getString("postal");
                          lat = json.getString("latitude");
                          lon = json.getString("longitude");
                          db.open();
                          String method = (db.isDatabaseSet())? "update" : "insert";
                          db.addUser(method, email, fname, mname, lname, address, apt, city, county, state, postal, lat, lon, phone, mobile, dob, gender);
                          db.close();
                    }
              }
        }

geoLocatのクラスは次のとおりです。

public JSONObject geoLocal(String address, String city, String state, String postal){
    JSONObject json = null;
    List<NameValuePair> params = new ArrayList<NameValuePair>();
    params.add(new BasicNameValuePair("address", address));
    params.add(new BasicNameValuePair("city", city));
    params.add(new BasicNameValuePair("state", state));
    params.add(new BasicNameValuePair("postal", postal));
    json = jsonParser.getJSONFromUrl(geoURL, params);
    return json;
}

そして、これらのリクエストを解析するクラスは次のとおりです。

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;

}

助けていただければ幸いです。これは私の脳を何日も悩ませてきました。

4

2 に答える 2

0

静的メンバー変数は、クラスごとに 1 つであり、クラスのすべてのオブジェクトによって共有されます。そのオブジェクトがなくなっても、このデータは静的メンバーに保存され、クラスの新しく作成されたオブジェクトと同じになります。

例えば:

  InputStream is = null;
  JSONObject jObj = null;
  String json = null;
于 2012-06-11T09:08:35.277 に答える
0

Well, in case anyone else runs into this same problem, changing to following

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

to

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

Will solve the problem to where the information isn't saved into the memory.

于 2012-06-11T08:31:22.460 に答える