JSON被android应用程序缓存

时间:2012-12-19 07:52:11

标签: java android json caching

我目前的Android应用程序存在问题,如果我运行应用程序,服务器在线,然后用后退按钮关闭应用程序,关闭服务器,然后再次启动应用程序,json回应被记住了。如果我强制退出应用程序,并且服务器关闭再次运行它,那么没有json响应。这个响应被缓存在哪里?我通过实例方法调用它来接收此响应,我不明白为什么会发生这种情况。我怎么能让我的应用程序不记得这个回复?

在我的活动中:

    uFunctions = new JSONFunctions();
    JSONObject json = null;
    System.out.println(json); // Returns null
    json = uFunctions.getJson(uid);
    System.out.println(json); //Returns the json after the request was completed
    //successfully even if the server is offline afterwards.

JSONFunctions:

public class JSONFunctions{

    public JSONFunctions(){
        jParser = new jParser();
    }

    public JSONObject getJson(String uid){
        List<NameValuePair> param = new ArrayList<NameValuePair>();
        param.add(new BasicNameValuePair("tag", "request");
        param.add(new BasicNameValuePair("id", uid);
        JSONObject json = jParser.getJsonFromUrl(url, param);
        return json;
    }
}

jParser:

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;

}

3 个答案:

答案 0 :(得分:0)

如果您使用后退按钮退出应用程序,系统只会将您的应用程序置于后台。因此,记住onCreate上分配给内存的值,并继续从onResume执行app。

但是,如果您强制退出应用程序,它将被销毁并从活动堆栈中删除其所有活动。在这种情况下,JSON响应也会被删除,并且当服务器处于脱机状态时,当应用程序再次启动并且onCreate被调用时,它无法从那里获得任何响应。

有关活动生命周期的文档。 Activity documentation

答案 1 :(得分:0)

我遇到了类似的问题。我的android应用程序有一个RESTful Web服务,它通过HTTP请求输出JSON字符串。 我的android应用程序正在缓存JSON输出。就我而言:

  1. 请求正在进行Web服务并成功收到JSON字符串。
  2. 我关闭了网络服务。
  3. 第二次向Web服务发出另一个与Web服务相同的请求。这次Web服务不能返回请求的JSON字符串。所以android应用程序在解析JSON字符串时会显示错误。但是android httpClient显然返回了以前的JSON字符串。所以,我认为这必须是一些缓存问题。
  4. 我已经通过两步解决了我的问题:

    1. 清除Android设置中的所有应用程序缓存数据应用菜单
    2. 在任何输出之前,在Web服务脚本上发送以下标题:

      Cache-Control: no-cache, must-revalidate - 没有缓存标题
      Expires: Sat, 26 Jul 1997 05:00:00 GMT - 过去的日期到期

      就我而言,它是用PHP代码编写的,如下所示:

      <?php
      header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
      header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
      ?>

答案 2 :(得分:0)

HTTP响应缓存在系统中;正如Jayp指出的那样,后退按钮不一定会从内存中刷新你的应用程序,因此缓存的响应仍然存在。

如果您正在使用Apache库,请在http请求对象中禁用缓存:

  request.setHeader("Cache-Control", "no-cache");

这应该可以解决问题。我认为对于java.net,你会在URLConnection中禁用缓存:

  conn.setUseCaches(false);

但我还没有尝试过。