Java - ByteArrayInputStream read() 方法



描述

Java ByteArrayInputStream read(byte[] b, int off, int len) 方法从该输入流读取 len 个字节的数据到一个字节数组中。read() 方法不会阻塞。

声明

以下是 java.io.ByteArrayInputStream.read(byte[] b, int off, int len) 方法的声明:

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

参数

  • b - 数据将读取到此缓冲区中

  • off - 目标数组 b 的起始偏移量

  • len - 读取的最大字节数

返回值

读取到缓冲区的字节数。如果流已到达末尾,则返回 -1。

异常

  • NullPointerException - 如果 b 为 null。

  • IndexOutOfBoundsException - 如果 len 大于偏移量 off 后的输入流长度,或者 off 为负数,或者 len 为负数。

示例 1

以下示例演示了 Java ByteArrayInputStream read() 方法的用法。我们创建了一个名为 buf 的 byte[] 变量,并初始化了一些字节。我们创建了一个 ByteArrayInputStream 引用,然后用 buf 变量对其进行初始化。我们创建了一个 4 字节的缓冲区,并使用 read() 方法将字节数组流读取到缓冲区中。然后迭代缓冲区以打印读取的字节。

import java.io.ByteArrayInputStream;
import java.io.IOException;
public class ByteStreamTest {
   public static void main(String[] args) throws IOException {
      byte[] buf = {65, 66, 67, 68, 69};
      ByteArrayInputStream bais = null;
      
      try {
         // create new byte array input stream
         bais = new ByteArrayInputStream(buf);
      
         // create buffer
         byte[] b = new byte[4];
         int num = bais.read(b, 2, 2);
         
         // number of bytes read
         System.out.println("Bytes read: "+num);
         
         // for each byte in a buffer
         for (byte s :b) {
         
            // covert byte to char
            char c = (char)s;
            
            // prints byte
            System.out.print(s);
            
            if(s == 0)
               
               // if byte is 0
               System.out.println(": Null");
            else
               
               // if byte is not 0
               System.out.println(": "+c);
         }
         
      } catch(Exception e) {
         // if I/O error occurs
         e.printStackTrace();
      } finally {
         if(bais!=null)
            bais.close();
      }   
   }
}

输出

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

Bytes read: 2
0: Null
0: Null
65: A
66: B

示例 2

以下示例演示了 Java ByteArrayInputStream available() 方法的用法。我们创建了一个名为 buf 的 byte[] 变量,并用空数组对其进行初始化。我们创建了一个 ByteArrayInputStream 引用,然后用 buf 变量对其进行初始化。我们创建了一个 4 字节的缓冲区,并使用 read() 方法将字节数组流读取到缓冲区中。在 if 循环中,我们使用 available() 方法检查流是否包含任何字节,然后打印其结果。

import java.io.ByteArrayInputStream;
import java.io.IOException;
public class ByteStreamTest {
   public static void main(String[] args) throws IOException {
      byte[] buf = {};
      ByteArrayInputStream bais = null;
      
      try {
         // create new byte array input stream
         bais = new ByteArrayInputStream(buf);
         
         // create buffer
         byte[] b = new byte[4];
         int num = bais.read(b, 2, 2);
         
         // number of bytes read
         System.out.println("Bytes read: "+num);
         int value = 0;
         // read the stream
         if((value = bais.read())!=-1) {
            // convert byte to character
            char c = (char)value;
            
            // print
            System.out.println("byte :"+value+"; char : "+ c);
         }else{
            System.out.print("byte stream is empty");
         } 
      } catch(Exception e) {
         // if I/O error occurs
         e.printStackTrace();
      } finally {
         if(bais!=null)
            bais.close();
      }
   }
}

输出

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

Bytes read: -1
byte stream is empty
java_bytearrayinputstream.htm
广告