org.apache.http不能引用的问题

android 6.0(api 23) SDK,不再提供org.apache.http.*(只保留几个类)

Android studio 解决办法:

1.下载 org.apache.http.legacy.jar 这个jar包。放置到程序app–>libs目录下

2.打开build.gradle文件,在android节点下添加:useLibrary ‘org.apache.http.legacy’,如下图:

 3.dependencies 里增加

compile 'org.apache.httpcomponents:httpcore:4.4.9'
compile 'org.apache.httpcomponents:httpclient:4.5.5'
这种方法也可以,

猜你喜欢

转载自blog.csdn.net/gqg_guan/article/details/130267724
今日推荐