大家好,又见面了,我是你们的朋友全栈君。
Java FileInputStream close()方法
java.io.FilterInputStream.close() 用于关闭流。
1 语法
public void close()
2 参数
无
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.FilterInputStream.close()方法的例子
*/
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.FilterInputStream;
import java.io.IOException;
import java.io.InputStream;
public class Demo {
public static void main(String[] args) throws Exception {
InputStream is = null;
FilterInputStream fis = null;
try {
// create input streams
is = new FileInputStream(“d://test.txt”);
fis = new BufferedInputStream(is);
// closes and releases the associated system resources
fis.close();
// read is called after close() invocation
fis.read();
} catch(IOException e) {
System.out.print(“stream is closed prior ot this call”);
} finally {
// releases any system resources associated with the stream
if(is!=null)
is.close();
if(fis!=null)
fis.close();
}
}
}
假设test.txt的内容如下:
ABCDE
输出结果为:
stream is closed prior ot this call
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/145904.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...