目录

void close()

描述 (Description)

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

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

声明 (Declaration)

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

public void close()

参数 (Parameters)

NA

返回值 (Return Value)

此方法不返回任何值。

异常 (Exception)

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

例子 (Example)

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

package com.iowiki;
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
↑回到顶部↑
WIKI教程 @2018