位置:首页 > Java技术 > Java.io包 > java.io.PipedInputStream.read(byte[] b int off, int len)方法实例

java.io.PipedInputStream.read(byte[] b int off, int len)方法实例

java.io.PipedInputStream.read(byte[] b int off, int len) 方法从该管道输入流中读取len个字节数据到一个字节数组。如果已到达数据流的末尾,或将被读取如果len超出管道缓冲区大小。如果len为0,则读取任何字节并返回0;否则,该方法将阻塞,直到输入最少1个字节可用,检测到流的末尾,或者抛出一个异常。

声明

以下是java.io.PipedInputStream.read()方法的声明

public int read(byte[] b, int off, int len)

参数

  • b -- 数据被读出缓冲器中。

  • off -- 在目标数组b的偏移开始。

  • len -- 读出最大字节。

返回值

此方法返回读入缓冲区的总字节数,或-1,如果没有更多的数据,因为数据流已到达末尾。

异常

  • NullPointerException -- 如果 b 是 null.

  • IndexOutOfBoundsException -- 如果off为负和len为负,或len大于b.length - off

  • IOException -- 如果管道损坏,未连接,关闭,或者发生I/ O错误。

例子

下面的示例演示java.io.PipedInputStream.read()方法的用法。

package com.yiibai;

import java.io.*;

public class PipedInputStreamDemo {

   public static void main(String[] args) {

      // create a new Piped input and Output Stream
      PipedOutputStream out = new PipedOutputStream();
      PipedInputStream in = new PipedInputStream();

      try {
         // connect input and output
         in.connect(out);

         // write something 
         out.write(70);
         out.write(71);

         // read what we wrote into an array of bytes
         byte[] b = new byte[2];
         in.read(b, 0, 2);

         // print the array as a string
         String s = new String(b);
         System.out.println("" + s);


      } catch (IOException ex) {
         ex.printStackTrace();
      }


   }
}

让我们编译和运行上面的程序,这将产生以下结果:

FG