Java 中的 ByteBuffer allocateDirect() 方法

java 8programmingobject oriented programming

可以使用 java.nio.ByteBuffer 类中的 allocateDirect() 方法分配直接字节缓冲区。此方法需要一个参数,即字节容量,并返回直接字节缓冲区。如果提供的容量为负数,则会抛出 IllegalArgumentException。

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

示例

import java.nio.*;
import java.util.*;
public class Demo {
   public static void main(String[] args) {
      int n = 5;
      try {
         ByteBuffer buffer = ByteBuffer.allocateDirect(n);
         byte[] byteValues = { 7, 1, 6, 3, 8 };
         buffer = ByteBuffer.wrap(byteValues);
         System.out.println("The direct ByteBuffer is: " + Arrays.toString(buffer.array()));
         System.out.println("
The state of the ByteBuffer is: ");          System.out.println(buffer.toString());       } catch (IllegalArgumentException e) { System.out.println("Error!!! IllegalArgumentException"); } catch (ReadOnlyBufferException e) { System.out.println("Error!!! ReadOnlyBufferException"); } } }

输出

The direct ByteBuffer is: [7, 1, 6, 3, 8]
The state of the ByteBuffer is:
java.nio.HeapByteBuffer[pos=0 lim=5 cap=5]

相关文章