首页  >  文章  >  Java  >  如何通过Retrofit和OKHttp离线使用缓存数据?

如何通过Retrofit和OKHttp离线使用缓存数据?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-11-04 14:20:02654浏览

 How to use cached data with Retrofit and OKHttp offline?

Retrofit 与 OKHttp 能否在离线时使用缓存数据

使用 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>

其他注意事项:

  • 从响应中删除 Vary 标头,以确保缓存所有 HTTP 方法。
  • 如果仍然遇到问题,请尝试清除缓存并重新启动应用程序。

以上是如何通过Retrofit和OKHttp离线使用缓存数据?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn