Java PushbackInputStream close()方法与示例

PushbackInputStream类close()方法

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

  • close()方法用于关闭此PushbackInputStream流,并在关闭流后调用此流的任何其他方法时,释放与此流链接的所有系统资源。

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

  • close()方法在关闭流时可能会引发异常。
    IOException:在执行过程中遇到任何输入/输出错误时,可能引发此异常。

语法:

    public void close();

参数:

  • 它不接受任何参数。

返回值:

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

示例

//Java程序演示示例 
//空隙的close()PushbackInputStream的方法

import java.io.*;

public class CloseOfPBIS {
    public static void main(String[] args) throws Exception {
        byte[] b_arr = {
            97,
            98,
            99,
            100
        };
        int count = 0;
        InputStream is_stm = null;
        PushbackInputStream pb_stm = null;

        try {
            //实例化ByteArrayOutputStream和PushbackInputStream-
            is_stm = new ByteArrayInputStream(b_arr);
            pb_stm = new PushbackInputStream(is_stm);

            //通过使用close()方法是
            //关闭流
            pb_stm.close();

            //通过使用read()方法是读取
            //字节并将其转换为int和
            //后调用read时 
            //流将导致异常
            char ch = (char) pb_stm.read();
            System.out.println("pb_stm.read(): " + ch);
        } catch (Exception ex) {
            System.out.println("Stream Closed Before!!!!");
        } finally {
            if (is_stm != null)
                is_stm.close();
            if (pb_stm != null)
                pb_stm.close();
        }
    }
}

输出结果

Stream Closed Before!!!!