-
Notifications
You must be signed in to change notification settings - Fork 187
ByteBuffer 流
Java NIO 中提供了一个可以进行高效 IO 操作 ByteBuffer 类,但是 ByteBuffer 在使用上有一点不便,就是分配的空间大小是确定的。这就像数组,而不能像 List 一样自动扩容。Java 还提供了可以自动扩容的输入输出字节数组流(ByteArrayInputStream 和 ByteArrayOutputStream),但是它们底层是用数组实现的,而不能直接操作 ByteBuffer。
为了更方便的操作 ByteBuffer,Hprose 提供了基于 ByteBuffer 的输入输出流,可以在 ByteBuffer 上进行流式操作。这部分包括了三个类:
- ByteBufferStream
- ByteBufferInputStream
- ByteBufferOutputStream
其中 ByteBufferStream
类是这部分的核心,它包含了输入输出流的实现。ByteBufferInputStream
是对 ByteBufferStream
的一个 InputSteam
包装。ByteBufferOutputStream
是对 ByteBufferStream
的一个 OutputSteam
包装。
下面重点介绍 ByteBufferStream 类。
public ByteBufferStream();
public ByteBufferStream(int capacity);
public ByteBufferStream(ByteBuffer buffer);
无参构造器创建一个容量大小为 1024 的 ByteBufferStream
对象。包含 capacity
参数的构造器创建一个容量大小为 capacity
的 ByteBufferStream
对象。通常,这两种构造器创建的 ByteBufferStream
对象用于写数据。包含 buffer
参数的构造器创建一个以 buffer
为底层操作对象的 ByteBufferStream
对象,通常,该构造器创建的 ByteBufferStream
对象用于读数据。
public final static ByteBuffer allocate(int capacity);
分配一个容量大小为 capacity
的直接内存的 ByteBuffer
对象。该方法功能 ByteBuffer.allocateDirect
类似,但是它会优先使用 ByteBufferStream 内存池中的已分配的空闲对象作为返回结果。
public final static void free(ByteBuffer buffer);
将 ByteBuffer
对象放入 ByteBufferStream
内存池,这里的 buffer
应该是在直接内存上分配的 ByteBuffer
对象,并且容量不小于 1024 且为 2 的 n 次方,否则将直接释放。
public final static ByteBufferStream wrap(byte[] array, int offset, int length);
public final static ByteBufferStream wrap(byte[] array);
将字节数组 array
包装为一个 ByteBufferStream 对象并返回。
关闭并回收该对象所包含的 ByteBuffer
对象。
返回该对象的 InputStream
包装。
返回该对象的 OutputStream
包装。
public final int read();
public final int read(byte b[]);
public final int read(byte b[], int off, int len);
public final int read(ByteBuffer b);