Java 中的 ByteBuffer allocate() 方法
java 8programmingobject oriented programming
可以使用 java.nio.ByteBuffer 类中的 allocate() 方法分配新的 ByteBuffer。此方法需要一个参数,即缓冲区的容量。它返回分配的新 ByteBuffer。如果提供的容量为负数,则抛出 IllegalArgumentException。
下面给出了一个演示此操作的程序 −
示例
import java.nio.*; import java.util.*; public class Demo { public static void main(String[] args) { int n = 5; try { ByteBuffer buffer = ByteBuffer.allocate(n); buffer.put((byte)1); buffer.put((byte)2); buffer.put((byte)3); buffer.put((byte)4); buffer.put((byte)5); buffer.rewind(); System.out.println("The ByteBuffer is: " + Arrays.toString(buffer.array())); } catch (IllegalArgumentException e) { System.out.println("Error!!! IllegalArgumentException"); } catch (ReadOnlyBufferException e) { System.out.println("Error!!! ReadOnlyBufferException"); } } }
输出
The ByteBuffer is: [1, 2, 3, 4, 5]