码迷,mamicode.com
首页 > 其他好文 > 详细

NIO之管道 (Pipe)

时间:2018-09-09 15:30:34      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:exception   java   toolbar   tle   通道   ann   print   读取   throw   

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

技术分享图片

代码使用示例:

技术分享图片
 1 @Test
 2     public void testPipe() throws IOException {
 3         // 1、获取通道
 4         Pipe pipe = Pipe.open();
 5 
 6         // 2、获取sink管道,用来传送数据
 7         Pipe.SinkChannel sinkChannel = pipe.sink();
 8 
 9         // 3、申请一定大小的缓冲区
10         ByteBuffer byteBuffer = ByteBuffer.allocate(1024);
11         byteBuffer.put("123232142345234".getBytes());
12         byteBuffer.flip();
13 
14         // 4、sink发送数据
15         sinkChannel.write(byteBuffer);
16 
17         // 5、创建接收pipe数据的source管道
18         Pipe.SourceChannel sourceChannel = pipe.source();
19         // 6、接收数据,并保存到缓冲区中
20         ByteBuffer byteBuffer2 = ByteBuffer.allocate(1024);
21         byteBuffer2.flip();
22         int length = sourceChannel.read(byteBuffer2);
23 
24         System.out.println(new String(byteBuffer2.array(), 0, length));
25 
26         sourceChannel.close();
27         sinkChannel.close();
28 
29     }
技术分享图片

 

NIO之管道 (Pipe)

标签:exception   java   toolbar   tle   通道   ann   print   读取   throw   

原文地址:https://www.cnblogs.com/shamo89/p/9612986.html

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