安卓Studio学习笔记---Android studio开发找不到HttpClient问题

                              解决Android studio开发找不到HttpClient问题




今天刚将idea的项目迁移到Studio上,出现了各种坑啊,首先我原来的sdk是19,里面是使用HttpClient请求网络的,但是迁移到Studio之后就不行了,百度之后才知道在23中,Google已经移除了Apache HttpClient 想关类,推荐使用HttpUrlConnection,那只能找一些解决办法了

百度了一下觉得这篇博客写的不错,也比较通俗易懂。
博客地址:
http://blog.csdn.net/mark_yangs/article/details/48755409


在Android 6.0(API 23) 中,Google已经移除了Apache HttpClient 想关类,推荐使用HttpUrlConnection,如果要继续使用,在Android studio对应的module下的build.gradle文件中加入:
android {
useLibrary 'org.apache.http.legacy'
}
上面的jar包在:\android-sdk-windows\platforms\android-23\optional目录下(需要下载Android 6.0)


操作流程



打开build.gradle文件


使用这种方式可以,但是不知道为什么我使用这种方式不行,一直提示这个

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

但是我的sdk目录下面有这个jar包的F:\Android\Sdk\platforms\android-23\optional,又是一个坑啊,太难受了,于是我又继续百度,终于知道原因了:

博客地址:http://blog.csdn.net/liuhongwei123888/article/details/50100697
内容是这样的:

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:

<span class="pln" style="color: rgb(0, 0, 0);">android </span><span class="pun" style="color: rgb(102, 102, 0);">{</span><span class="pln" style="color: rgb(0, 0, 0);">
    useLibrary </span><span class="str" style="color: rgb(136, 0, 0);">'org.apache.http.legacy'</span><span class="pln" style="color: rgb(0, 0, 0);">
</span><span class="pun" style="color: rgb(102, 102, 0);">}</span>
也就是在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,则自己新建一个这样的文件,然后加入如下内容:

[html]  view plain  copy
  1. [  
  2.   {  
  3.     "name": "org.apache.http.legacy",  
  4.     "jar": "org.apache.http.legacy.jar",  
  5.     "manifest": false  
  6.   }  
  7. ]  

找到了解决办法,就开始按照解决办法进行解决了,经测试果然解决了,太难受了,好多坑啊





  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值