Java 中的 ByteBuffer duplicate() 方法

java 8object oriented programmingprogramming

可以使用 java.nio.ByteBuffer 类中的方法 duplicate() 创建缓冲区的重复缓冲区。此重复缓冲区与原始缓冲区相同。方法 duplicate() 返回创建的重复缓冲区。

下面给出了一个演示此操作的程序 −

示例

import java.nio.*;
import java.util.*;
public class Demo {
   public static void main(String[] args) {
      int n = 5;
      try {
         ByteBuffer buffer1 = ByteBuffer.allocate(5);
         buffer1.put((byte)1);
         buffer1.put((byte)2);
         buffer1.put((byte)3);
         buffer1.put((byte)4);
         buffer1.put((byte)5);
         buffer1.rewind();
         System.out.println("原始的 ByteBuffer 为: " + Arrays.toString(buffer1.array()));
         ByteBuffer buffer2 = buffer1.duplicate();
         System.out.print("重复的 ByteBuffer 为: " + Arrays.toString(buffer2.array()));
      } catch (IllegalArgumentException e) {
         System.out.println("Error!!! IllegalArgumentException");
      } catch (ReadOnlyBufferException e) {
         System.out.println("Error!!! ReadOnlyBufferException");
      }
   }
}

输出

原始的 ByteBuffer 为: [1, 2, 3, 4, 5]
重复的 ByteBuffer 为: [1, 2, 3, 4, 5]

相关文章