實現HTTP和HTTPS請求的自動緩存:HttpResponseCache
這個HttpResponseCache庫實現了HTTP 和 HTTPS請求的透明和自動緩存,基于 java.net.HttpUrlConnection 類。
final long httpCacheSize = 10 * 1024 * 1024; // 10 MiB final File httpCacheDir = new File(getCacheDir(), "http"); try { Class.forName("android.net.http.HttpResponseCache") .getMethod("install", File.class, long.class) .invoke(null, httpCacheDir, httpCacheSize); } catch (Exception httpResponseCacheNotAvailable) { Ln.d(httpResponseCacheNotAvailable, "android.net.http.HttpResponseCache not available, probably because we're running on a pre-ICS version of Android. Using com.integralblue.httpresponsecache.HttpHttpResponseCache."); try{ com.integralblue.httpresponsecache.HttpResponseCache.install(httpCacheDir, httpCacheSize); }catch(Exception e){ Ln.e(e, "Failed to set up com.integralblue.httpresponsecache.HttpResponseCache"); } }
本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!