我不知道我做错了什么。当我点击control-z时,我希望在屏幕上打印“完成”语句。但它不会打印出来。请让我知道原因。
import java.io.*;
import java.lang.*;
import java.util.*;
class Cdt
{
public static void main(String args[])
{
String s=new String();
try{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
while (s!=null)
{
s=br.readLine();
System.out.println(s);
}
System.out.println("Done");
}catch(IOException e){}
}
}