首頁  >  文章  >  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