NIO管道(Pipe)

限于喜欢 提交于 2020-01-31 11:19:44

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

@Test
public void test1() throws IOException{
//1. 获取管道
    Pipe pipe = Pipe.open();
		
	//2. 将缓冲区中的数据写入管道
	ByteBuffer buf = ByteBuffer.allocate(1024);
	Pipe.SinkChannel sinkChannel = pipe.sink();
	buf.put("通过单向管道发送数据".getBytes());
	buf.flip();
	sinkChannel.write(buf);
		
	//3. 读取缓冲区中的数据
	Pipe.SourceChannel sourceChannel = pipe.source();
	buf.flip();
	int len = sourceChannel.read(buf);
	System.out.println(new String(buf.array(), 0, len));
	sourceChannel.close();
	sinkChannel.close();
}

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!