Closing BufferedReader and System.in

后端 未结 2 2020
一个人的身影
一个人的身影 2020-11-27 08:17
Reader rdr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(rdr);
String s;
s = br.readLine();
br.close();
Scanner sc = new Scanner(System.         


        
2条回答
  •  生来不讨喜
    2020-11-27 09:14

    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.

提交回复
热议问题