zoukankan      html  css  js  c++  java
  • 十一 Pipe

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

    创建管道

    通过Pipe.open()方法打开管道。例如:

    Pipe pipe = Pipe.open();

    向管道写数据

    要向管道写数据,需要访问sink通道。

    Pipe.SinkChannel sinkChannel = pipe.sink();

    通过调用SinkChannel的write()方法,将数据写入SinkChannel.

    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);
    }

    从管道读取数据

    从读取管道的数据,需要访问source通道.

    Pipe.SourceChannel sourceChannel = pipe.source();

    调用source通道的read()方法来读取数据

    ByteBuffer buf = ByteBuffer.allocate(48);
    
    int bytesRead = sourceChannel.read(buf);

    read()方法返回的int值会告诉我们多少字节被读进了缓冲区。

  • 相关阅读:
    JDK内置工具使用
    awk 数组
    c++面试题
    C++内存分配
    awk 数字比较
    awk脚本 排序
    awk 读取 shell 变量的方法
    NVelocity系列:Getting Start With NVelocity
    Castle.ActiveRecord分页示例
    NVelocity系列:NVelocity配置详解
  • 原文地址:https://www.cnblogs.com/gudulijia/p/6424837.html
Copyright © 2011-2022 走看看