Java PushbackInputStream read()方法

java.io.PushbackInputStream.read() 方法读取当前输入流中数据的下一个字节。则返回该值的字节,一个介于0到255之间的整数。 如果没有可用的字节,因为流的末尾已到达,则返回值-1。此方法一直阻塞在输入数据可用,该流的末尾被检测到,或者抛出一个异常。此方法返回最近推回字节,如果存在,否则调用它的底层输入流,并返回read()方法的值。

1 语法

public int read()

2 参数

3 返回值

此方法返回数据的下一个字节,如果已到达流的末尾,则返回-1。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.PushbackInputStream.read()方法的例子
 */
import java.io.*;

public class Demo {
    public static void main(String[] args) {

        // declare a buffer and initialize its size:
        byte[] arrByte = new byte[1024];

        // create an array for our message
        byte[] byteArray = new byte[]{'H', 'e', 'l', 'l', 'o'};


        // create object of PushbackInputStream class for specified stream
        InputStream is = new ByteArrayInputStream(byteArray);
        PushbackInputStream pis = new PushbackInputStream(is);

        try {
            // read from the buffer one character at a time
            for (int i = 0; i < byteArray.length; i++) {

                // read a char into our array
                arrByte[i] = (byte) pis.read();

                // display the read byte
                System.out.print((char) arrByte[i]);
            }
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }
}

输出结果为:

Hello

热门文章

优秀文章