Java NIO 管道是 2 个线程之间的单向数据链接。Pipe 有一个 source 通道和一个 sink 通道。数据会被写到 sink 通道,从 source 通道读取。java
这里是 Pipe 原理的图示:编程
经过 Pipe.open() 方法打开管道。例如:并发
Pipe pipe = Pipe.open();
要向管道写数据,须要访问 sink 通道。像这样:线程
Pipe.SinkChannel sinkChannel = pipe.sink();
经过调用 SinkChannel 的 write() 方法,将数据写入 SinkChannel,像这样:code
String newData = "New String to write to file..." + System.currentTimeMillis(); ByteBuffer buf = ByteBuffer.allocate(48); buf.clear(); buf.put(newData.getBytes()); buf.flip(); while(buf.hasRemaining()) { sinkChannel.write(buf); }
从读取管道的数据,须要访问 source 通道,像这样:blog
Pipe.SourceChannel sourceChannel = pipe.source();
调用 source 通道的 read() 方法来读取数据,像这样:教程
ByteBuffer buf = ByteBuffer.allocate(48); int bytesRead = sourceChannel.read(buf);
read() 方法返回的 int 值会告诉咱们多少字节被读进了缓冲区。ip
转载自并发编程网 – ifeve.com,本文连接地址: Java NIO系列教程(十一) Pipeget