void close


描述

所述java.io.BufferedInputStream.close()方法关闭缓冲的输入数据流并释放与该流相关联的所有系统资源。关闭流后,read(),available(),skip()或reset()调用将抛出I / O异常。

在先前关闭的流上调用close没有任何影响。

声明

以下是java.io.BufferedInputStream.close()方法的声明。

public void close()

参数

NA

返回值

该方法没有返回值

异常

IOException - 如果发生任何I / O错误。

实例

以下示例显示了java.io.BufferedInputStream.close()方法的用法。

package com.tutorialspoint;

import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;

public class BufferedInputStreamDemo {
   public static void main(String[] args) throws Exception {
      BufferedInputStream bis = null;

      try {
         // open input stream test.txt for reading purpose.
         inStream = new FileInputStream("c:/test.txt");

         // input stream is converted to buffered input stream
         bis = new BufferedInputStream(inStream);      

         // invoke available
         int byteNum = bis.available();

         // number of bytes available is printed
         System.out.println(byteNum);

         // releases any system resources associated with the stream
         bis.close();

         // throws io exception on available() invocation
         byteNum = bis.available();
         System.out.println(byteNum);

      } catch (IOException e) {
         // exception occurred.
         System.out.println("Error: Sorry 'bis' is closed");
      } finally {
         // releases any system resources associated with the stream
         if(inStream!=null)
            inStream.close();
      }
   }
}

假设我们有一个文本文件c:/test.txt,它具有以下内容。此文件将用作示例程序的输入

ABCDE

让我们编译并运行上面的程序,这将产生以下结果

Error: Sorry 'bis' is closed