11NIO--管道Pipe

Posted mrchengs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了11NIO--管道Pipe相关的知识,希望对你有一定的参考价值。

 

管道(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();
    }

 技术图片

 

实例:

向管道中写数据

技术图片

从管道中读取数据

技术图片

 

以上是关于11NIO--管道Pipe的主要内容,如果未能解决你的问题,请参考以下文章

Java-NIO:管道 (Pipe)

java nio管道

Java NIO -- 管道 (Pipe)

Java NIO 管道 (Pipe)

Java NIO系列教程 Pipe

Java NIO管道