在android 6.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'
}

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

上一篇:Spirng_Batch


下一篇:Combine Two Tables