Android中的HttpClient是否在收到内容时进行内存/磁盘缓存?

时间:2011-10-04 00:10:05

标签: android http httpclient

我不知道android中的HttpClient是否有内置的缓存系统,那么我可以避免构建自己的。

1 个答案:

答案 0 :(得分:5)

Gingerbread中支持缓存(以及许多其他功能),但您必须切换到HttpUrlConnection。看到 http://android-developers.blogspot.com/2011/09/androids-http-clients.html

这个问题似乎也很重要: How to check caching in DefaultHttpClient on Android