首页 > 代码库 > HttpURLConnection or Apache Http client
HttpURLConnection or Apache Http client
在安卓上网络请求有两种方式,一种是java自带的HttpURLConnection, 一种是Apache的Http Clinet, 但是要选择两方式比较好呢?
摘录Android 官方博客:
Which client is best?
Apache HTTP client has fewer bugs on Eclair and Froyo. It is the best choice for these releases.
For Gingerbread and better, HttpURLConnection is the best choice. Its simple API and small size makes it great fit for Android. Transparent compression and response caching reduce network use, improve speed and save battery. New applications should use HttpURLConnection; it is where we will be spending our energy going forward.
在Android 2.3之前,最好选择Apache Http client,在Android 2.3及以后请选择HttpURLConnection。
有兴趣的可以研究下Volley框架:
if (Build.VERSION.SDK_INT >= 9) { stack = new HurlStack();-->HttpURLConnection } else { // Prior to Gingerbread, HttpUrlConnection was unreliable. // See: http://android-developers.blogspot.com/2011/09/androids-http-clients.html stack = new HttpClientStack(AndroidHttpClient.newInstance(userAgent)); -->Apache Http client }
原文:http://android-developers.blogspot.sg/2011/09/androids-http-clients.html
HttpURLConnection or Apache Http client
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。