java.io.IOException:400错误加载URL

时间:2013-06-10 12:27:16

标签: java android

我正在使用jsoup来连接网址

该网址被302重定向到另一个

我想获得主网址(重定向后的第二个)

以下是代码:

Connection.Response response = Jsoup
.connect(f_url[0])
.method(Connection.Method.GET)
.followRedirects(false)
.header("Accept", "image/png,image/*;q=0.8,*/*;q=0.5")
.header("Accept-Encoding", "gzip, deflate")
.header("Accept-Language", "en-US,en;q=0.5")
.header("Connection", "keep-alive")
.userAgent("Mozilla/5.0 (Windows NT 6.2; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0")
.timeout(globalData.WEB_TIME_OUT).execute();
String the_url = response.header("Location");

问题:我得到ioexception我确定url是正确的,它的下载文件我测试了它。重定向到主地址,文件开始下载

java.io.IOException: 400 error loading URL

0 个答案:

没有答案