java.io.PipedOutputStream.write(byte[] b, int off, int len)方法實例
java.io.PipedOutputStream.write(byte[] b, int off, int len) 方法從指定的字節數組開始到這個管道輸出流偏移量off寫入len字節。此方法將阻塞,直到所有的字節寫入到輸出流。
聲明
以下是java.io.PipedOutputStream.write()方法的聲明
public void write(byte[] b, int off, int len)
參數
-
b -- 數據
-
off -- 在數據偏移的開始。
-
len -- 要寫入的字節數。
返回值
此方法無返回值。
異常
-
IOException -- 如果發生I/ O錯誤。
例子
下麵的示例演示java.io.PipedOutputStream.write()方法的用法。
package com.yiibai; import java.io.*; public class PipedOutputStreamDemo extends PipedInputStream { public static void main(String[] args) { byte[] b = {'h', 'e', 'l', 'l', 'o'}; // create a new Piped input and Output Stream PipedOutputStream out = new PipedOutputStream(); PipedInputStreamDemo in = new PipedInputStreamDemo(); try { // connect input and output out.connect(in); // write something out.write(b, 0, 3); // flush the stream out.flush(); // print what we wrote for (int i = 0; i < 3; i++) { System.out.print("" + (char) in.read()); } } catch (IOException ex) { ex.printStackTrace(); } } }
讓我們編譯和運行上麵的程序,這將產生以下結果:
hel