我正在为我的学校申请一个申请,我想从网站上显示新闻,所以我必须在我的申请中获取源代码。这是我从网站获取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;
}
如果我有互联网连接,它可以正常工作,但如果没有连接,应用程序崩溃。如果没有连接到Internet而没有崩溃,如何在应用程序中显示错误? (对不起我的英语,我是来自德国的学生......)
任何人都可以帮助我吗?
由于
乔纳森
答案 0 :(得分:3)
你需要捕获UnknownHostException:
我也会改变你的方法,只从连接返回InputStream,并处理与之相关的所有异常。然后才尝试阅读或解析它或用它做任何其他事情。您可以获取errorInputStream并将对象状态更改为error(如果有)。你可以用同样的方式解析它,只是做不同的逻辑。
我会有更多的东西:
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();
}
}
}
我希望它能帮助你,祝你的项目好运。