android volley 6.0 支持httpclient方法

来源:互联网 发布:淘宝有信用卡套现的吗 编辑:程序博客网 时间:2024/06/05 19:59

在android 6.0(API 23)中,Google已经移除了移除了Apache HttpClient相关的类

推荐使用HttpUrlConnection,如果要继续使用需要Apache HttpClient,需要在Android studio下libs里添加org.apache.http.legacy.jar,android studio里在相应的module下的build.gradle中加入:
android {
useLibrary ‘org.apache.http.legacy’
}

上面的jar包在:**\android-sdk-windows\platforms\android-23\optional下(需要下载android 6.0的SDK)

文章来源:http://www.bozhiyue.com/anroid/wenzhang/2016/0517/106467.html

0 0
原创粉丝点击