使用 Retrofit 和 OKHttp 缓存 HTTP 响应时,可能会出现困难。让我们研究一下这个问题及其解决方案:
将 Retrofit 与 OKHttp 结合使用时,用户可能无法离线读取缓存的响应。尽管有缓存的 JSON 响应,仍会返回 UnknownHostException。
要解决此问题,服务器响应必须包含 Cache-Control: public 才能启用OkClient 来访问缓存。
此外,您可以通过添加 Cache-Control: max-age=0 来修改请求标头,以在网络连接可访问时优先考虑网络连接。
以下是使用方法它显式地:
对于 Retrofit 2.x:
使用拦截器来管理缓存访问:
<code class="java">private static final Interceptor REWRITE_CACHE_CONTROL_INTERCEPTOR = new Interceptor() { @Override public Response intercept(Chain chain) throws IOException { Response originalResponse = chain.proceed(chain.request()); if (Utils.isNetworkAvailable(context)) { int maxAge = 60; // read from cache for 1 minute return originalResponse.newBuilder() .header("Cache-Control", "public, max-age=" + maxAge) .build(); } else { int maxStale = 60 * 60 * 24 * 28; // tolerate 4-weeks stale return originalResponse.newBuilder() .header("Cache-Control", "public, only-if-cached, max-stale=" + maxStale) .build(); } } };</code>
配置客户端:
<code class="java">OkHttpClient client = new OkHttpClient(); client.networkInterceptors().add(REWRITE_CACHE_CONTROL_INTERCEPTOR); // Setup cache File httpCacheDirectory = new File(context.getCacheDir(), "responses"); int cacheSize = 10 * 1024 * 1024; // 10 MiB Cache cache = new Cache(httpCacheDirectory, cacheSize); // Add cache to the client client.setCache(cache); // ...</code>
对于 OKHttp 2.0.x:
更新代码以反映语法中的更改:
<code class="java"> File httpCacheDirectory = new File(context.getCacheDir(), "responses"); Cache cache = null; try { cache = new Cache(httpCacheDirectory, 10 * 1024 * 1024); } catch (IOException e) { Log.e("OKHttp", "Could not create http cache", e); } OkHttpClient okHttpClient = new OkHttpClient(); if (cache != null) { okHttpClient.setCache(cache); } String hostURL = context.getString(R.string.host_url); api = new RestAdapter.Builder() .setEndpoint(hostURL) // ... .build() .create(MyApi.class);</code>
其他注意事项:
以上是如何通过Retrofit和OKHttp离线使用缓存数据?的详细内容。更多信息请关注PHP中文网其他相关文章!