首页  >  文章  >  Java  >  OKHttp Retrofit 可以离线使用缓存数据吗?

OKHttp Retrofit 可以离线使用缓存数据吗?

Patricia Arquette
Patricia Arquette原创
2024-11-04 20:01:02711浏览

Can Retrofit with OKHttp Use Cached Data Offline?

Retrofit 与 OKHttp 可以在离线时使用缓存数据吗?

本题探讨了使用 Retrofit 和 OKHttp 来缓存 HTTP 响应用于离线访问。问题中提供的代码遵循常见方法,但无法离线检索缓存的响应表明需要一些额外的配置。

Edit for Retrofit 2.x

对于 Retrofit 2.x,离线缓存的首选方法是使用 OkHttp 拦截器。

  1. 创建一个拦截器:

    <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>
  2. 设置客户端:

    <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>
  3. 添加客户端进行改造

    <code class="java">Retrofit retrofit = new Retrofit.Builder()
            .baseUrl(BASE_URL)
            .client(client)
            .addConverterFactory(GsonConverterFactory.create())
            .build();</code>

OKHttp 2.0.x(原始答案)

在 OKHttp 2.0.x 中,setResponseCache 方法现在是 setCache:

<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);
}</code>

原始答案

原始答案强调需要在服务器响应中添加 Cache-Control: public 标头,以便 OkClient 离线访问缓存数据。

此外,可以使用 RequestInterceptor 来实现参数化标头配置:

<code class="java">RestAdapter.Builder builder= new RestAdapter.Builder()
   .setRequestInterceptor(new RequestInterceptor() {
        @Override
        public void intercept(RequestFacade request) {
            request.addHeader("Accept", "application/json;versions=1");
            if (MyApplicationUtils.isNetworkAvailable(context)) {
                int maxAge = 60; // read from cache for 1 minute
                request.addHeader("Cache-Control", "public, max-age=" + maxAge);
            } else {
                int maxStale = 60 * 60 * 24 * 28; // tolerate 4-weeks stale
                request.addHeader("Cache-Control", 
                    "public, only-if-cached, max-stale=" + maxStale);
            }
        }
});</code>

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

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