我正在尝试使用httpResponseCache来缓存我的一些请求。问题是,我想知道在发出请求之前是否缓存了请求。
我在HttpResponseCache的源代码中看到,有一个get方法接收(URI、requestMethod、Map<String、List<String>>)并返回cachedResponse。我尝试了几组不同的(URI,"GET",Headers),但我似乎不知道标头是什么,每次我使用GET请求cachedResponse时,我都会返回null,即使缓存了响应。
是否有人成功地使用get方法来确定在发出请求之前是否缓存了请求/或者是否有其他方法来检查在发出请求前是否缓存了内容?我知道我可以使用hitCount来确定响应是否是从缓存中获取的,并且我可以使用"缓存控制","仅在缓存时"来强制缓存响应。我只是希望能够检查它是否被缓存。
以下是我用来尝试实现这一目标的一些代码。在活动的onCreate中,我确实以这种方式初始化缓存:
try {
File httpCacheDir = new File(this.getCacheDir(), "http");
long httpCacheSize = 10 * 1024 * 1024; // 10 MiB
Class.forName("android.net.http.HttpResponseCache")
.getMethod("install", File.class, long.class)
.invoke(null, httpCacheDir, httpCacheSize);
}
catch (Exception httpResponseCacheNotAvailable) {
Log.d(TAG,"HttpResponseCache not available.");
}
然后尝试以这种方式使用:
HttpResponseCache cache = HttpResponseCache.getInstalled();
try {
HashMap map = new HashMap<String, List<String>>();
CacheResponse response = cache.get(URI.create(base_url), "GET", map);
//response is always null
Log.d(TAG," Response is!:"+response);
} catch (IOException e) {
e.printStackTrace();
}
对不起/谢谢/非常感谢您的帮助!
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
HttpResponseCache cache = HttpResponseCache.getInstalled();
cache.get(new URI(url.toString()), "GET", connection.getHeaderFields());
应该这样做,但我还没有尝试过。