zoukankan      html  css  js  c++  java
  • Java-NIO(九):管道 (Pipe)

    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     }
  • 相关阅读:
    对java中接口的简单理解
    jqgrid
    sed跨行匹配替换
    linux 安装 mysql
    mysql 导入或导出(mysqldump)数据
    spring boot slf4j + logback
    原码、反码、补码
    Java线程池(一)
    springboot 多环境配置及打包资源
    springboot自定义yaml配置文件
  • 原文地址:https://www.cnblogs.com/yy3b2007com/p/7266361.html
Copyright © 2011-2022 走看看