编译提示爆红
import org.apache.http.HttpEntity
import org.apache.http.HttpResponse
import org.apache.http.StatusLine
import org.apache.http.client.HttpClient
import org.apache.http.client.methods.HttpGet
import org.apache.http.impl.client.DefaultHttpClient
报错:
Error:(19, 23) 错误: 程序包org.apache.http不存在
Error:(20, 23) 错误: 程序包org.apache.http不存在
Error:(21, 23) 错误: 程序包org.apache.http不存在
Error:(22, 30) 错误: 程序包org.apache.http.client不存在
Error:(23, 38) 错误: 程序包org.apache.http.client.methods不存在
Error:(24, 35) 错误: 程序包org.apache.http.impl.client不存在
Error:(175, 9) 错误: 找不到符号
符号: 类 HttpClient
位置: 类 SimpleWikiHelper
Error:(175, 33) 错误: 找不到符号
符号: 类 DefaultHttpClient
位置: 类 SimpleWikiHelper
Error:(176, 9) 错误: 找不到符号
符号: 类 HttpGet
位置: 类 SimpleWikiHelper
Error:(176, 31) 错误: 找不到符号
符号: 类 HttpGet
位置: 类 SimpleWikiHelper
Error:(180, 13) 错误: 找不到符号
符号: 类 HttpResponse
位置: 类 SimpleWikiHelper
Error:(183, 13) 错误: 找不到符号
符号: 类 StatusLine
位置: 类 SimpleWikiHelper
Error:(190, 13) 错误: 找不到符号
符号: 类 HttpEntity
位置: 类 SimpleWikiHelper
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
出现的原因: 是google删除了这个包
解决方法:就是自己重新找到这个包,自己加上去。
解决方法:
app-->build.gradle中
在buildToolsVersion下边
defaultConfig上边
添加如下代码
useLibrary 'org.apache.http.legacy'
如图