首页 > 其他 > 详细

11、NIO--管道Pipe

时间:2019-05-09 23:22:18      阅读:144      评论:0      收藏:0      [点我收藏+]

 

管道(Pipe)

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

技术分享图片

 

 

@Test
    public void test() throws IOException{
        //1、获取管道
        Pipe pipe = Pipe.open();
        
        //2、将缓冲区的数据写入管道
        ByteBuffer buf = ByteBuffer.allocate(1024);
        
        Pipe.SinkChannel sinkChannel = pipe.sink();
        buf.put("MrChegns".getBytes());
        buf.flip();
        sinkChannel.write(buf);
        
        //3、读取缓冲区中的信息
        Pipe.SourceChannel sourceChannel = pipe.source();
        buf.flip();
        sourceChannel.read(buf);
        
        System.out.println(new String(buf.array(),0,buf.limit()));
        
        //4、关闭
        sourceChannel.close();
        sinkChannel.close();
    }

 技术分享图片

 

实例:

向管道中写数据

技术分享图片

从管道中读取数据

技术分享图片

 

11、NIO--管道Pipe

原文:https://www.cnblogs.com/Mrchengs/p/10841707.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!