ByteBuffer 的 `allocateDirect()` 方法在 Java 中
可以使用 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]
广告