zoukankan      html  css  js  c++  java
  • java的nio之:java的nio系列教程之pipe

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

    这里是Pipe原理的图示:

    创建管道

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

    1 Pipe pipe = Pipe.open();

    向管道写数据

    要向管道写数据,需要访问sink通道。像这样:

    1 Pipe.SinkChannel sinkChannel = pipe.sink();

    通过调用SinkChannel的write()方法,将数据写入SinkChannel,像这样:

    01 String newData = "New String to write to file..." + System.currentTimeMillis();
    02 ByteBuffer buf = ByteBuffer.allocate(48);
    03 buf.clear();
    04 buf.put(newData.getBytes());
    05  
    06 buf.flip();
    07  
    08 while(buf.hasRemaining()) {
    09     sinkChannel.write(buf);
    10 }

    从管道读取数据

    从读取管道的数据,需要访问source通道,像这样:

    1 Pipe.SourceChannel sourceChannel = pipe.source();

    调用source通道的read()方法来读取数据,像这样:

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

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

  • 相关阅读:
    yum命令速查
    5分钟理解编译系统
    Nginx(一)安装及启停
    Linux时间命令
    常用七种排序的python实现
    python迭代器、生成器、装饰器
    LeetCode【第217题】Contains Duplicate
    LeetCode【第1题】Two Sum
    python【第二十篇】Django表的多对多、Ajax
    不要问我DO在哪里?
  • 原文地址:https://www.cnblogs.com/shangxiaofei/p/5824924.html
Copyright © 2011-2022 走看看