1. Java NIO 管道是2个线程之间的单向数据连接。Pipe有一个source通道和一个sink通道。数据会被写到sink通道,从source通道读取。

这里是Pipe原理的图示:

Java基础知识强化之IO流笔记82:NIO之 Pipe(管道)

 

 

2. Pipe使用

(1)创建管道

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

1 Pipe pipe = Pipe.open();

 

(2)向管道写数据

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

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

通过调用SinkChannel的write()方法,将数据写入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 
 6 buf.flip();
 7 
 8 while(buf.hasRemaining()) {
 9     sinkChannel.write(buf);
10 }

 

(3)从管道读取数据

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

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

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

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

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

相关文章:

  • 2021-12-18
  • 2022-02-19
  • 2022-02-20
  • 2021-06-12
  • 2021-09-05
  • 2021-11-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-05
  • 2021-06-19
  • 2022-02-07
  • 2021-12-17
  • 2022-03-05
  • 2022-01-09
  • 2021-11-30
相关资源
相似解决方案