Java j无法'时的组错误处理;无法连接到网站

Java j无法'时的组错误处理;无法连接到网站,java,html,jsoup,Java,Html,Jsoup,当程序无法连接到网站时,如何在Jsoup上进行错误处理 例如,该网站不存在,我想打印错误消息给用户 下面的代码显示了我连接到某个网站的方式,但我想要的是,如果该网站不存在,我希望它打印错误消息 Document doc; try { // need http protocol doc = Jsoup.connect("https://forum.lowyat.net/user/OldSchoolJoke").get(); // get page title S

当程序无法连接到网站时,如何在Jsoup上进行错误处理

例如,该网站不存在,我想打印错误消息给用户

下面的代码显示了我连接到某个网站的方式,但我想要的是,如果该网站不存在,我希望它打印错误消息

Document doc;
try {

    // need http protocol
    doc = Jsoup.connect("https://forum.lowyat.net/user/OldSchoolJoke").get();

    // get page title
    String title = doc.title();
    //System.out.println("title : " + title);

    // get all links
    Elements links = doc.select("div.postdetails");
    for (Element link : links) {

        // get the value from href attribute
                    System.out.println("\nlink : " + link.attr("div"));
        System.out.println("text : " + link.text());

    }

} catch (IOException e) {
    e.printStackTrace();
}
试试这个

try{
    Connection.Response response = Jsoup.connect("https://asdasdasd.com")
                            .userAgent("Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.21 (KHTML, like Gecko) Chrome/19.0.1042.0 Safari/535.21")
                            .timeout(10000)
                            .ignoreHttpErrors(true).
                            .execute();

    int statusCode = response.statusCode();
    if(statusCode == 200) {
        Document doc = Jsoup.connect("https://asdasdasd.com").get();
        Elements links = doc.select("div.postdetails");
        for (Element link : links) {
            // get the value from href attribute
            System.out.println("\nlink : " + link.attr("div"));
            System.out.println("text : " + link.text());
        }
    }
    else {
        System.out.println("received error code : " + statusCode);
    }
} catch (IOException e) {
    e.printStackTrace();
}

我可以在
Document doc=connection.get()行进行更改吗到例如
Document doc=Jsoup.connect(“https://asdasdasd.com).get()?因为我在
连接上出错。get()