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

2023-01-01,,,,

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

上面是我复制的别人的回答,和HttpClient一样,HttpResponse类也被移除了,解决方法如上所述,jar文件位置在sdk目录下\platforms\android-23\optional文件夹中

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

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

下载本文的Word格式文档,以方便收藏与打印。