全屏
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 cn.sxt;
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 {
InputStream inStream = null;
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
编译和运行上面的程序,这将产生以下结果:5Error: Sorry 'bis' is closed
分享到:
0评论