原文連接 做者: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