码迷,mamicode.com
首页 > 编程语言 > 详细

十三、Java NIO 管道

时间:2020-05-19 10:29:37      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:com   channel   col   alt   pip   string   log   while   读取数据   

所有文章

https://www.cnblogs.com/lay2017/p/12901123.html

 

正文

NIO的管道(Pipe)是一种打通两个线程之间数据传输的一种方式。Pipe包含两个channel:

1)Source Channel

2)Sink Channel

你可以向SinkChannel写入数据,然后从SourceChannel读取出来。如图

技术图片

 

 创建一个Pipe

Pipe pipe = Pipe.open();

写入数据到Pipe

Pipe.SinkChannel sinkChannel = pipe.sink();
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);
}

从Pipe读取数据

Pipe.SourceChannel sourceChannel = pipe.source();
ByteBuffer buf = ByteBuffer.allocate(48);

int bytesRead = inChannel.read(buf);

 

十三、Java NIO 管道

标签:com   channel   col   alt   pip   string   log   while   读取数据   

原文地址:https://www.cnblogs.com/lay2017/p/12915247.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!