修改Activity为AppCompatActivity ,用6.0编译。报错The type org.apache.http.NameValuePair cannot be resolved.

在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文件夹中

你可能感兴趣的:(修改Activity为AppCompatActivity ,用6.0编译。报错The type org.apache.http.NameValuePair cannot be resolved.)