Java.io.PushbackInputStream.read()方法实例
java.io.PushbackInputStream.read()方法读取当前输入流中数据的下一个字节。则返回该值的字节,一个介于0到255之间的整数。 如果没有可用的字节,因为流的末尾已到达,则返回值-1。此方法一直阻塞在输入数据可用,该流的末尾被检测到,或者抛出一个异常。此方法返回最近推回字节,如果存在,否则调用它的底层输入流,并返回read()方法的值。
声明
以下是java.io.PushbackInputStream.read()方法的声明
public int read()
参数
-
NA
返回值
此方法返回下一个数据字节,或-1,如果流的末尾已到达。
异常
-
IOException -- 如果此输入流已关闭通过调用它的close()方法,或者发生I/ O错误。
例子
下面的示例演示java.io.PushbackInputStream.read()方法的用法。
package com.yiibai; import java.io.*; public class PushbackInputStreamDemo { 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