美文网首页技术栈
2019-05-09——Java NIO Scatter/Gat

2019-05-09——Java NIO Scatter/Gat

作者: 烟雨乱平生 | 来源:发表于2019-05-09 01:01 被阅读0次

scatter

分散(scatter)从Channel中读取是指在读操作时将读取的数据写入多个buffer中。因此,Channel将从Channel中读取的数据分散(scatter)到多个Buffer中。即Scattering Reads

image.png
ByteBuffer header = ByteBuffer.allocate(128);
ByteBuffer body   = ByteBuffer.allocate(1024);
ByteBuffer[] bufferArray = { header, body };
channel.read(bufferArray);

注意buffer首先被插入到数组,然后再将数组作为channel.read() 的输入参数。read()方法按照buffer在数组中的顺序将从channel中读取的数据写入到buffer,当一个buffer被写满后,channel紧接着向另一个buffer中写。

gather

聚集(gather)写入Channel是指在写操作时将多个buffer的数据写入同一个Channel,因此,Channel 将多个Buffer中的数据聚集(gather)后发送到Channel。即Gathering Writes

image.png
ByteBuffer header = ByteBuffer.allocate(128);
ByteBuffer body   = ByteBuffer.allocate(1024);
ByteBuffer[] bufferArray = { header, body };
channel.write(bufferArray);

buffers数组是write()方法的入参,write()方法会按照buffer在数组中的顺序,将数据写入到channel,注意只有position和limit之间的数据才会被写入。因此,如果一个buffer的容量为128byte,但是仅仅包含58byte的数据,那么这58byte的数据将被写入到channel中。

相关文章

网友评论

    本文标题:2019-05-09——Java NIO Scatter/Gat

    本文链接:https://www.haomeiwen.com/subject/bftioqtx.html