Java - ByteArrayOutputStream write(byte[] b, int off, int len)



描述

java ByteArrayOutputStream write(byte[] b, int off, int len) 方法将指定字节数组从偏移量 off 开始的 len 个字节写入此 ByteArrayOutputStream。

声明

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

public void write(byte[] b, int off, int len)

参数

  • b - 指定的缓冲区。

  • off - 数据开始的偏移量。

  • len - 要写入的字节长度。

返回值

此方法不返回值。

异常

示例 1

以下示例演示了 Java ByteArrayOutputStream write(byte[] b, int off, int len) 方法的使用。我们创建了一个 ByteArrayOutputStream 引用,然后用 ByteArrayOutputStream 对象对其进行初始化。现在我们使用 write() 方法将字节数组的一部分写入输出流,并使用 toString() 方法打印流的字符串表示形式。最后,在 finally 块中,我们使用 close() 方法关闭流。

package com.tutorialspoint;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
public class ByteArrayOutputStreamDemo {
   public static void main(String[] args) throws IOException {
      String str = "";      
      byte[] bs = {65, 66, 67, 68, 69};
      ByteArrayOutputStream baos = null;
      
      try {
         // create new ByteArrayOutputStream
         baos = new ByteArrayOutputStream();
      
         // write byte array to the output stream
         baos.write(bs, 2, 3);
         
         // converts buffer to string
         str = baos.toString();
         
         // print
         System.out.println(str);
         
      } catch(Exception e) {
         // if I/O error occurs
         e.printStackTrace();
      } finally {
         if(baos!=null)
            baos.close();
      }   
   }
}

输出

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

CDE

示例 2

以下示例演示了 Java ByteArrayOutputStream write(byte[] b, int off, int len) 方法的使用。我们创建了一个 ByteArrayOutputStream 引用,然后用 ByteArrayOutputStream 对象对其进行初始化。现在我们使用 write() 方法将整个字节数组写入输出流,并使用 toString() 方法打印流的字符串表示形式。最后,在 finally 块中,我们使用 close() 方法关闭流。

package com.tutorialspoint;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
public class ByteArrayOutputStreamDemo {
   public static void main(String[] args) throws IOException {
      String str = "";      
      byte[] bs = {65, 66, 67, 68, 69};
      ByteArrayOutputStream baos = null;
      
      try {
         // create new ByteArrayOutputStream
         baos = new ByteArrayOutputStream();
      
         // write byte array to the output stream
         baos.write(bs, 0, bs.length());
         
         // converts buffer to string
         str = baos.toString();
         
         // print
         System.out.println(str);
         
      } catch(Exception e) {
         // if I/O error occurs
         e.printStackTrace();
      } finally {
         if(baos!=null)
            baos.close();
      }   
   }
}

输出

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

ABCDE
java_bytearrayoutputstream.htm
广告