Android 6.0 使用 Apache HttpClient

Posted 码一个大馒头

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 6.0 使用 Apache HttpClient相关的知识,希望对你有一定的参考价值。

android 6.0版本已经已经基本将Apahce Http Client 移除出SDK。

 那么问题来了,如果我在以前的项目中使用了Apache HttpClient相关类,怎么办呢?

请看官网给出的答案

Apache HTTP Client Removal


Android 6.0 release removes support for the Apache HTTP client. If your app is using this client and targets Android 2.3 (API level 9) or higher, use the HttpURLConnection class instead. This API is more efficient because it reduces network use through transparent compression and response caching, and minimizes power consumption. To continue using the Apache HTTP APIs, you must first declare the following compile-time dependency in your build.gradle file:

android {
    useLibrary ‘org.apache.http.legacy‘
}

也就是在build.gradle中加入上面的配置就行了。

 

https://developer.android.com/intl/zh-cn/about/versions/marshmallow/android-6.0-changes.html#behavior-apache-http-client

 

又是一坑: 即使我们使用的是Android 6,并且加入了以下useLibrary配置,也有可能出现如下编译错误:

" Unable to find optional library: org.apache.http.legacy"

解决办法:

     1、看看目录E:\software\Android\sdk\platforms\android-23\optional 下有没有org.apache.http.legacy.jar 和 optional.json

    技术分享

    

     2、如果没有optional.json,则自己新建一个这样的文件,然后加入如下内容:

[  
  {  
    "name": "org.apache.http.legacy",  
    "jar": "org.apache.http.legacy.jar",  
    "manifest": false  
  }  
]  

 

 

转载 http://blog.csdn.net/liuhongwei123888/article/details/50100697

以上是关于Android 6.0 使用 Apache HttpClient的主要内容,如果未能解决你的问题,请参考以下文章

AndroidHttpClient 和 HttpGet API 在 Android 6.0 Marshmallow (API 23) 中已弃用

使用 Apache Http Client 4.5.3 从 jdk1.6.0_45 到 API Gateway 的简单 POST 请求

lucene 6.0 经常使用类与方法

java.lang.IncompatibleClassChangeError:类 'org.apache.http.message.BasicHeader' 未实现接口 'org.apache.htt

Android权限管理PermissionsDispatcher2.3.2使用+原生6.0权限使用

Android权限管理PermissionsDispatcher2.3.2使用+原生6.0权限使用