我想连接到https://www.notebooksbilliger.de/但是使用以下代码它不起作用:
try
{
Response response = Jsoup.connect(url)
.userAgent("Mozilla")
.ignoreContentType(true)
.execute();
System.out.println(response.url());
doc = response.parse();
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
为什么我获得状态405?我怎么能解决这个问题?
非常感谢..
塞巴斯蒂安
答案 0 :(得分:2)
问题解决了
将useragent从“Mozilla”更改为“Mozilla / 5.0(Windows NT 10.0; WOW64; rv:50.0)”