13.Java NIO Pipe管道

原文链接:http://tutorials.jenkov.com/java-nio/pipe.html

一个Java NIO的管道是两个线程间单向传输数据的连接。一个管道(Pipe)有一个source channel和一个sink channel(没想到合适的中文名)。我们把数据写到sink channel中,这些数据可以同过source channel再读取出来。

下面是一个管道的示意图:

http://tutorials.jenkov.com/images/java-nio/pipe-internals.png

创建管道(Creating a Pipe)

打开一个管道通过调用Pipe.open()工厂方法,如下:

  1. Pipe pipe = Pipe.open();

向管道写入数据(Writing to a Pipe)

向管道写入数据需要访问他的sink channel:

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

接下来就是调用write()方法写入数据了:

  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. }

从管道读取数据(Reading from a Pipe)

类似的从管道中读取数据需要访问他的source channel:

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

接下来调用read()方法读取数据:

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

注意这里read()的整形返回值代表实际读取到的字节数。