得到错误的HTTP URL连接(Get error in HTTP Url Connection)

2019-10-17 20:01发布

我正在为我校的应用程序,我想表明从网站的消息,所以我必须得到源代码在我的应用程序。 这是我从网站获取源代码HTML的代码:

public String getHTML(String urlToRead) {
    URL url;
    HttpURLConnection conn;
    BufferedReader rd;
    String line;
    String result = "";
    try {
        url = new URL(urlToRead);
        conn = (HttpURLConnection) url.openConnection();
        conn.setRequestMethod("GET");
        rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
        while ((line = rd.readLine()) != null) {
            result += line;
        }
        rd.close();
    } catch (Exception e) {
        result += e.toString();
    }
    return result;
}

如果我有一个互联网连接,它工作正常,但如果没有连接,应用程序崩溃。 我怎样才能显示在App错误,如果有互联网没有连接,没有崩溃呢? (对不起,我的英语,我是来自德国的学生......)

谁能帮我?

谢谢

乔纳森

Answer 1:

你需要捕捉的UnknownHostException:

还有我会改变你的方法,从连接只返回InputStream和处理与它相关的所有异常。 只有这样,尝试读取或分析,或做别的吧。 你可以得到,如果任何一个errorInputStream和改变对象状态错误。 你可以解析它同样的方式,只是做不同的逻辑。

我将有更多的东西,如:

public class TestHTTPConnection {

    boolean error = false;

    public InputStream getContent(URL urlToRead) throws IOException {
        InputStream result = null;
        error = false;
        HttpURLConnection conn = (HttpURLConnection) urlToRead.openConnection();
        try {
            conn.setRequestMethod("GET");
            result = conn.getInputStream();
        } catch (UnknownHostException e) {
            error = true;
            result = null;
            System.out.println("Check Internet Connection!!!");
        } catch (Exception ex) {
            ex.printStackTrace();
            error = true;
            result = conn.getErrorStream();
        }
        return result;
    }

    public boolean isError() {
        return error;
    }

    public static void main(String[] args) {
        TestHTTPConnection test = new TestHTTPConnection();
        InputStream inputStream = null;
        try {
            inputStream = test.getContent(new URL("https://news.google.com/"));
            if (inputStream != null) {
                BufferedReader rd = new BufferedReader(new InputStreamReader(
                        inputStream));
                StringBuilder data = new StringBuilder();
                String line;
                while ((line = rd.readLine()) != null) {
                    data.append(line);
                    data.append('\n');
                }
                System.out.println(data);
                rd.close();
            }
        } catch (MalformedURLException e) {
            System.out.println("Check URL!!!");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

我希望它会帮助你,祝你好运与您的项目。



文章来源: Get error in HTTP Url Connection