Java.io.SequenceInputStream.read()方法实例
java.io.SequenceInputStream.read() 方法读取当前输入流中数据的下一个字节。该字节被返回为一个范围在0到255之间的整数,如果没有可用的字节,因为流的末尾已到达,则返回值-1。此方法一直阻塞在输入数据可用,该流的末尾被检测到,或者抛出一个异常。
声明
以下是java.io.SequenceInputStream.read()方法的声明
public int read()
参数
-
NA
返回值
此方法返回下一个数据字节,或如果已到达流的末尾返回-1。
异常
-
IOException -- 如果发生I/O错误。
例子
下面的示例演示java.io.SequenceInputStream.read()方法的用法。
package com.yiibai; import java.io.*; public class SequenceInputStreamDemo { public static void main(String[] args) { // create two new strings with 5 characters each String s1 = "Hello"; String s2 = "World"; // create 2 input streams byte[] b1 = s1.getBytes(); byte[] b2 = s2.getBytes(); ByteArrayInputStream is1 = new ByteArrayInputStream(b1); ByteArrayInputStream is2 = new ByteArrayInputStream(b2); // create a new Sequence Input Stream SequenceInputStream sis = new SequenceInputStream(is1, is2); try { // read 10 characters, 5 from each stream for (int i = 0; i < 10; i++) { char c = (char) sis.read(); System.out.print("" + c); } // change line System.out.println(); // close the streams sis.close(); } catch (IOException ex) { ex.printStackTrace(); } } }
让我们编译和运行上面的程序,这将产生以下结果:
HelloWorld