I use the bufferedreader in the servlet, in theory it should wait when I write something in the console, but it immediately returns null and responds
BufferedReader in = new BufferedReader (new InputStreamReader (System.in)); String strLine = in.readLine ();
StrLine returns null, what should be done to read from the console?