Java NIO Pipe是2个线程之间的单向数据连接。Pipe有一个source通道和一个sink通道。数据会被写到sink通道,从source通道读取。
这里是Pipe原理的图示:
管道 Pipe - 图1
Pipe原理

创建管道

通过Pipe.open()方法打开管道。例如:

  1. Pipe pipe = Pipe.open();

向管道写数据

要向管道写数据,需要访问sink通道。像这样:

  1. Pipe.SinkChannel sinkChannel = pipe.sink();

通过调用SinkChannelwrite()方法,将数据写入SinkChannel,像这样:

  1. String newData = "New String to write to file..." + System.currentTimeMillis();
  2. ByteBuffer buf = ByteBuffer.allocate(48);
  3. buf.clear();
  4. buf.put(newData.getBytes());
  5. buf.flip();
  6. while(buf.hasRemaining()) {
  7. sinkChannel.write(buf);
  8. }

从管道读取数据

从读取管道的数据,需要访问source通道,像这样:

  1. Pipe.SourceChannel sourceChannel = pipe.source();

调用source通道的read()方法来读取数据,像这样:

  1. ByteBuffer buf = ByteBuffer.allocate(48);
  2. int bytesRead = inChannel.read(buf);

read()方法返回的int值会告诉我们多少字节被读进了缓冲区。

示例

  1. //管道 Pipe
  2. @Test
  3. void pipe() throws IOException {
  4. //1. 获取管道
  5. Pipe pipe = Pipe.open();
  6. //2. 将缓冲区中的数据写入管道
  7. ByteBuffer buf = ByteBuffer.allocate(1024);
  8. Pipe.SinkChannel sinkChannel = pipe.sink();
  9. buf.put("通过单向管道发送数据".getBytes());
  10. buf.flip();
  11. sinkChannel.write(buf);
  12. //3. 读取缓冲区中的数据
  13. Pipe.SourceChannel sourceChannel = pipe.source();
  14. buf.flip();
  15. int len = sourceChannel.read(buf);
  16. System.out.println(new String(buf.array(), 0, len));
  17. sourceChannel.close();
  18. sinkChannel.close();
  19. }