JSoup HTTP错误提取URL。状态= 405

时间:2017-01-05 14:08:54

标签: jsoup http-status-code-405

我想连接到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?我怎么能解决这个问题?

非常感谢..

塞巴斯蒂安

1 个答案:

答案 0 :(得分:2)

问题解决了

将useragent从“Mozilla”更改为“Mozilla / 5.0(Windows NT 10.0; WOW64; rv:50.0)”