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



描述

Java DataOutputStream write(byte[] b, int off, int len) 方法将从指定字节数组 b 的位置 off 开始的 len 个字节写入底层输出流。

声明

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

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

参数

  • b − 源缓冲区。

  • off − 起始位置。

  • len − 写入流的字节数。

返回值

此方法不返回值。

异常

IOException − 如果发生 I/O 错误。

示例 1

以下示例演示了 Java DataOutputStream write(byte[] b, int off, int len) 方法的用法。我们创建了 ByteArrayOutputStream 和 DataOutputStream 引用。一个 byte[] buf 用一些字节值初始化。创建了一个 ByteArrayOutputStream 对象。然后用之前创建的 ByteArrayOutputStream 对象初始化 DataOutputStream。然后将字节数组的一部分写入 dataoutputstream。下一步,使用 flush() 方法刷新流,并迭代 ByteArrayOutputStream 以打印写入流的字节。最后,我们关闭所有流。

import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
public class DataOutputStreamDemo {
   public static void main(String[] args) throws IOException {
      ByteArrayOutputStream baos = null;
      DataOutputStream dos = null;
      byte[] buf = {87,64,72,31,90};
      
      try {
         // create byte array output stream
         baos = new ByteArrayOutputStream();
         
         // create data output stream
         dos = new DataOutputStream(baos);
         
         // write to the stream from the source buffer
         dos.write(buf, 2, 3);
         
         // flushes bytes to underlying output stream
         dos.flush();
   
         // for each byte in the baos buffer content
         for(byte b:baos.toByteArray()) {
            System.out.println(b);
         }         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      } finally {
         
         // releases all system resources from the streams
         if(dos!=null)
            dos.close();
         if(baos!=null)
            baos.close();
      }
   }
}

输出

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

72
31
90

示例 2

以下示例演示了 Java DataOutputStream write(byte[] b, int off, int len) 方法的用法。我们创建了 ByteArrayOutputStream 和 DataOutputStream 引用。一个 byte[] buf 用一些字节值初始化。创建了一个 ByteArrayOutputStream 对象。然后用之前创建的 ByteArrayOutputStream 对象初始化 DataOutputStream。然后通过将索引设置为 0 并设置字节数组的长度,将完整的字节数组写入 dataoutputstream。下一步,使用 flush() 方法刷新流,并迭代 ByteArrayOutputStream 以打印写入流的字节。最后,我们关闭所有流。

import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
public class DataOutputStreamDemo {
   public static void main(String[] args) throws IOException {
      ByteArrayOutputStream baos = null;
      DataOutputStream dos = null;
      byte[] buf = {87,64,72,31,90};
      
      try {
         // create byte array output stream
         baos = new ByteArrayOutputStream();
         
         // create data output stream
         dos = new DataOutputStream(baos);
         
         // write to the stream from the source buffer
         dos.write(buf, 0, buf.length);
         
         // flushes bytes to underlying output stream
         dos.flush();
   
         // for each byte in the baos buffer content
         for(byte b:baos.toByteArray()) {
            System.out.println(b);
         }
         
      } catch(Exception e) {
         // if any error occurs
         e.printStackTrace();
      } finally {
         // releases all system resources from the streams
         if(dos!=null)
            dos.close();
         if(baos!=null)
            baos.close();
      }
   }
}

输出

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

87
64
72
31
90
java_dataoutputstream.htm
广告