Closing BufferedReader and System.in

2019-01-05 06:32发布

Reader rdr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(rdr);
String s;
s = br.readLine();
br.close();
Scanner sc = new Scanner(System.in);
s = sc.nextLine();
System.out.print(s);

I've noticed that if I close the BufferedReader, I won't be able to insert input from the keyboard anymore, as System.in is somehow closed. Is there anyway I can keep br.close() (I need that in order to delete a file) and then add more input from the keyboard?

2条回答
Luminary・发光体
2楼-- · 2019-01-05 06:46

If you just want to get input from keyboard by System.in, please use static BufferedReader wrapping InputStreamReader (also wrapping System.in). Like this:

 Public BufferedReader is = new BufferedReader(new InputStreamReader(System.in));

And is.close(); would be needed right before your application terminated.

查看更多
放我归山
3楼-- · 2019-01-05 06:48

Looks like you need:

http://commons.apache.org/io/apidocs/org/apache/commons/io/input/CloseShieldInputStream.html

Wrap that around System.in before making your reader, and then all will be well, since you won't do that when you are using a FileInputStream.

查看更多
登录 后发表回答