nio
  • Introduction
  • Java NIO详解
    • 阻塞与非阻塞概念
    • 同步与异步
    • 什么是NIO
    • Java NIO 概述
    • Buffer
    • Channel
      • 概述
      • 通道基础
        • 打开通道
        • 使用通道
        • 关闭通道
      • FileChannel
        • FileChannel基本用法
        • 文件锁
      • Socket通道
        • 非阻塞模式
        • SocketChannel
        • ServerSocketChannel
        • DatagramChannel
      • Scatter与Gather
    • Selector
    • JAVA NIO与IO
    • Pipe
    • 其他相关知识介绍
  • 高性能网络框架——netty
    • 基础概念
    • 入门教程
Powered by GitBook
On this page
  • 参考文档:
  • 概述
  • 创建管道
  • 向管道写数据
  • 从管道读取数据

Was this helpful?

  1. Java NIO详解

Pipe

PreviousJAVA NIO与IONext其他相关知识介绍

Last updated 5 years ago

Was this helpful?

参考文档:

JAVA NIO中文版第三章通道 3.6 管道

百度链接: 密码: 4fan

概述

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

这里是Pipe原理的图示:

创建管道

通过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值会告诉我们多少字节被读进了缓冲区。

https://pan.baidu.com/s/1ByltDNJqnoaKsUkEADMd6A