Java NIO系列教程(十一) Pipe

 

原文连接 做者:Jakob Jenkov     html

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

这里是Pipe原理的图示:.net

建立管道

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

Pipe pipe = Pipe.open();

向管道写数据

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

Pipe.SinkChannel sinkChannel = pipe.sink();

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

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()) {
    <b>sinkChannel.write(buf);</b>
}

从管道读取数据

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

Pipe.SourceChannel sourceChannel = pipe.source();

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

ByteBuffer buf = ByteBuffer.allocate(48);

int bytesRead = inChannel.read(buf);

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

(全文完)get

相关文章
相关标签/搜索