博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java FilterInputStream close()方法与示例
阅读量:2548 次
发布时间:2019-05-11

本文共 2030 字,大约阅读时间需要 6 分钟。

FilterInputStream类close()方法 (FilterInputStream Class close() method)

  • close() method is available in java.io package.

    close()方法在java.io包中可用。

  • close() method is used to close this FilterInputStream and free all system resources linked with this stream.

    close()方法用于关闭此FilterInputStream并释放与此流链接的所有系统资源。

  • close() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    close()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • close() method may throw an exception at the time of closing the stream.

    close()方法在关闭流时可能会引发异常。

    IOException: This exception may throw when getting any input/output error while performing.

    IOException :在执行过程中遇到任何输入/输出错误时,可能引发此异常。

Syntax:

句法:

public void close();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of the method is void, it returns nothing.

该方法的返回类型为void ,不返回任何内容。

Example:

例:

// Java program to demonstrate the example // of void close() method of FilterInputStreamimport java.io.*;public class CloseOfFIS {
public static void main(String[] args) throws Exception {
FileInputStream fis_stm = null; FilterInputStream fil_stm = null; try {
// Instantiates FileInputStream and // FilterInputStream fis_stm = new FileInputStream("D:\\includehelp.txt"); fil_stm = new BufferedInputStream(fis_stm); // By using read() method is to // read the character from fil_stm fil_stm.read(); // By using close() method is to // close this fil_stm stream fil_stm.close(); // when we call read() method // after closing the stream will // result an exception fil_stm.read(); } catch (Exception ex) {
System.out.println("Stream Closed Before!!!"); } finally {
// with the help of this block is to // free all necessary resources linked // with the stream if (fis_stm != null) {
fis_stm.close(); if (fil_stm != null) {
fil_stm.close(); } } } }}

Output

输出量

Stream Closed Before!!!

翻译自:

转载地址:http://ftvzd.baihongyu.com/

你可能感兴趣的文章
[置顶] 【cocos2d-x入门实战】微信飞机大战之三:飞机要起飞了
查看>>
BABOK - 需求分析(Requirements Analysis)概述
查看>>
第43条:掌握GCD及操作队列的使用时机
查看>>
Windows autoKeras的下载与安装连接
查看>>
CMU Bomblab 答案
查看>>
微信支付之异步通知签名错误
查看>>
2016 - 1 -17 GCD学习总结
查看>>
linux安装php-redis扩展(转)
查看>>
Vue集成微信开发趟坑:公众号以及JSSDK相关
查看>>
技术分析淘宝的超卖宝贝
查看>>
i++和++1
查看>>
react.js
查看>>
P1313 计算系数
查看>>
NSString的长度比较方法(一)
查看>>
Azure云服务托管恶意软件
查看>>
My安卓知识6--关于把项目从androidstudio工程转成eclipse工程并导成jar包
查看>>
旧的起点(开园说明)
查看>>
生产订单“生产线别”带入生产入库单
查看>>
crontab导致磁盘空间满问题的解决
查看>>
java基础 第十一章(多态、抽象类、接口、包装类、String)
查看>>