使用 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中文網其他相關文章!