我的 iOS 应用程序中有自定义缓存引擎。
AFURLCache* urlCache = [[[AFURLCache alloc] initWithMemoryCapacity:0 diskCapacity:0 diskPath:@""] autorelease];
[NSURLCache setSharedURLCache:urlCache];
现在想着安卓版。
那里的方法是什么?有没有办法设置内部自定义处理 HTTP 请求?
NSURLCache 的 Android 替代方案是 HttpResponseCache。
http://developer.android.com/reference/android/net/http/HttpResponseCache.html
该类支持HttpURLConnection和HttpsURLConnection;DefaultHttpClient 或 AndroidHttpClient 没有平台提供的缓存。