黑马程序员技术交流社区

标题: java.io.IOException: Stream closed [打印本页]

作者: 傅宇    时间: 2013-3-9 20:53
标题: java.io.IOException: Stream closed
  1. import java.io.BufferedReader;
  2. import java.io.BufferedWriter;
  3. import java.io.File;
  4. import java.io.FileWriter;
  5. import java.io.IOException;
  6. import java.io.InputStreamReader;

  7. public class question4 {

  8.         public static void main(String[] args) throws IOException {
  9.                 File f1 = new File("1.txt");
  10.                 File f2 = new File("2.txt");
  11.                 File f3 = new File("3.txt");
  12.                 writer(f1);
  13.                 writer(f2);
  14.                 writer(f3);
  15.         }

  16.         public static void writer(File f) throws IOException {
  17.                 BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  18.                 BufferedWriter bw = new BufferedWriter(new FileWriter(f));
  19.                 String line = null;
  20.                 while ((line = br.readLine()) != null) {
  21.                         if ("over".equals(line)) {
  22.                                 break;
  23.                         } else {
  24.                                 bw.write(line);
  25.                                 bw.newLine();
  26.                                 bw.flush();
  27.                         }
  28.                 }
  29.                 br.close();
  30.                 bw.close();
  31.         }
  32. }
复制代码
上面代码当运行到writer(f2)时,会报java.io.IOException: Stream closed,但是不加上br.close()的时候,程序就会正常,为什么不能关闭标准输入流,调用方法的时候,不是新new了BufferedReader,为什么会报错?
作者: BitmapFactory    时间: 2013-3-10 12:09
这个帖子有没有人解释啊
作者: 陈丽莉    时间: 2013-3-10 18:19
请将昵称改为自己的名字,否则不知道技术分是谁的~

论坛改名申请通道

作者: HM黄祥为    时间: 2013-3-10 19:21
那是因为你第一次调用br.close();的时候 级联关闭了system.in    而syste.in这个流关闭后即释放所有资源 无法再使用了  同时也无法使用java对其进行重新打开。
public final static InputStream in = nullInputStream();
这是in的定义.
然后去看nullInputStream();

/**
     * The following two methods exist because in, out, and err must be
     * initialized to null.  The compiler, however, cannot be permitted to
     * inline access to them, since they are later set to more sensible values
     * by initializeSystemClass().
     */
    private static InputStream nullInputStream() throws NullPointerException {
    if (currentTimeMillis() > 0)
        return null;
    throw new NullPointerException();
    }

从注释也能看出来in 初始化为null了.
然后实际运行时是通过initializeSystemClass()来初始化的.
再看
private static void initializeSystemClass() {
的代码,里面有
setIn0(new BufferedInputStream(fdIn));
这个setIn0就是让
in = new  BufferedInputStream(fdIn);
不过这是有c语言来实现的,因为in是final的,你不能通过java来改变它.

所以在使用system.in这个流的时候不要关闭,如果一定要关闭 并且还是要使用systeem.in的话 可以这么做   
通过调用                 System.setIn(InputStream in) 即可  但是
无法这已经不是从键盘作为标准输入了    键盘作为标准输入 实在程序初始化运行时由JVM调用本地方法实现的     java代码无法实现




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2