Java.io.PipedInputStream.read() 方法



描述

java.io.PipedInputStream.read(byte[] b int off, int len) 方法从该管道输入流中读取最多 len 个字节的数据到一个字节数组中。如果到达数据流的末尾或 len 超过管道的缓冲区大小,则读取的字节数将小于 len。如果 len 为零,则不读取任何字节并返回 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.tutorialspoint;

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
java_io_pipedinputstream.htm
广告