标签: java
我只能打印一行。如果我拿走reply = null;它陷入无限循环。如何打印所有行?
BufferedReader in2; try{ reply = in2.readLine(); while(reply != null){ System.out.println(reply); reply = null; }