Java - ByteArrayInputStream read() 方法



描述

Java ByteArrayInputStream read() 方法返回从该输入流中剩余可读取的字节数。它将值作为 int 返回,范围为 0 到 255。如果由于到达流的末尾而没有可用的字节,则返回 -1。此 read 方法不会阻塞。

声明

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

public int read()

参数

返回值

该值返回下一个数据字节,如果到达流的末尾则返回 -1。

异常

示例 1

以下示例演示了 Java ByteArrayInputStream read() 方法的使用。我们创建了一个名为 buf 的 byte[] 变量,并初始化了一些字节。我们创建了一个 ByteArrayInputStream 引用,然后用 buf 变量对其进行初始化。在 while 循环中,我们使用 read() 方法将流读取到一个 int 中,然后通过将其转换为 char 来打印其值。

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);
         
         int b =0;
         
         // read till the end of the stream
         while((b = bais.read())!=-1) {
            
            // convert byte to character
            char c = (char)b;
            
            // print
            System.out.println("byte :"+b+"; char : "+ c);
            
         }
         System.out.print(bais.read()+" Reached the end");
         
      } catch(Exception e) {
         // if I/O error occurs
         e.printStackTrace();
      } finally {
         if(bais!=null)
            bais.close();
      }
   }
}

输出

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

byte :65; char : A
byte :66; char : B
byte :67; char : C
byte :68; char : D
byte :69; char : E
-1 Reached the end

示例 2

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

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);
         
         int b =0;
         
         // read the stream
         if((b = bais.read())!=-1) {
            // convert byte to character
            char c = (char)b;
            
            // print
            System.out.println("byte :"+b+"; 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();
      }
   }
}

输出

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

byte stream is empty
java_bytearrayinputstream.htm
广告