出于某种原因,当我发出GET请求时,它似乎进入了一个无限循环。我认为这是我的网络应用程序有问题,但在尝试google.com后,会出现相同的结果。
try {
URL url = new URL("http://google.com");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setReadTimeout(10000 /* milliseconds */);
con.setConnectTimeout(15000 /* milliseconds */);
con.setRequestMethod("GET");
con.setDoInput(true);
con.connect();
InputStream is = con.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(is));
for (String line = reader.readLine(); line != null;) {
System.out.println(line);
}
reader.close();
} catch (ClientProtocolException e) {
System.out.println("Client Exception " + e.getMessage());
} catch(IOException e) {
e.printStackTrace();
System.out.println("IOException " + e.getMessage());
}
此代码永远不会传递for循环。它只是继续打印。有谁看到了什么问题?
答案 0 :(得分:1)
问题出在这里
for (String line = reader.readLine(); line != null;) {
System.out.println(line);
}
“line”始终是输入的第一行。你需要读新行。
答案 1 :(得分:1)
line = reader.readLine()shuold调用,但在代码中只运行一次,因为它是初始化部分的一部分..
尝试像
一样for (; (line =reader.readLine()) != null;) {
}
or
while ((line = br.readLine()) != null) {}