Android Studio 找不到Apache HttpClient相关类

来源:互联网 发布:python module init 编辑:程序博客网 时间:2024/06/06 08:50
在android6.0(API 23)中,Google已经移除了移除了Apache HttpClient相关的类
推荐使用HttpUrlConnection,如果要继续使用需要Apache HttpClient,需要在eclipse下libs里添加org.apache.http.legacy.jar,android studio里在相应的module下的build.gradle中加入:
android {
useLibrary 'org.apache.http.legacy'
}
0 0
原创粉丝点击