摘要:
1.Scatter 从一个Channel读取的信息分散到N个缓冲区中(Buufer).2.Gather 将N个Buffer里面内容按照顺序发送到一个Channel. Scatter/Gather功能是通道(Channel)提供的 并不是Buffer, Scatter/Gather相关接口 类图 ReadableByteChannel WritableByteChannel 接口提供了通道的读写功能 ScatteringByteChannel GatheringByteChannel接口都新增了两个以缓冲区数组作为参数的相应方法 以FileChannel为例*Scatter /**... 阅读全文