位置:首頁 > Java技術 > Java.io包 > Java.io.PipedInputStream.read()方法實例

Java.io.PipedInputStream.read()方法實例

java.io.PipedInputStream.read() 方法從這個管道輸入流中讀取下一個數據字節。該字節的值返回一個介於0到255之間的整數。此方法一直阻塞在輸入數據可用,或者檢測到流的末尾拋出一個異常。

聲明

以下是java.io.PipedInputStream.read()方法的聲明

public int read()

參數

  • NA

返回值

此方法返回下一個數據字節,或如果已到達流的末尾返回-1。

異常

  • IOException -- 如果發生I/ O錯誤。

例子

下麵的示例演示java.io.PipedInputStream.read()方法的用法。

package com.yiibai;

import java.io.*;

public class PipedInputStreamDemo {

   public static void main(String[] args) {

      // create a new Piped input and Output Stream
      PipedOutputStream out = new PipedOutputStream();
      PipedInputStream in = new PipedInputStream();

      try {
         // connect input and output
         in.connect(out);

         // write something 
         out.write(70);
         out.write(71);

         // read what we wrote
         for (int i = 0; i < 2; i++) {
            System.out.println("" + (char) in.read());
         }

      } catch (IOException ex) {
         ex.printStackTrace();
      }


   }
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

F
G