當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.PipedInputStream.read()用法及代碼示例



描述

這個java.io.PipedInputStream.receive(int b)方法接收一個字節的數據。如果沒有可用的輸入,此方法將阻塞。

聲明

以下是聲明java.io.PipedInputStream.receive()方法。

protected void receive(int b)

參數

b− 正在接收的字節

返回值

此方法不返回值。

異常

IOException− 如果管道損壞、未連接、關閉或發生 I/O 錯誤。

示例

下麵的例子展示了使用java.io.PipedInputStream.receive()方法。

package com.tutorialspoint;

import java.io.*;

public class PipedInputStreamDemo extends PipedInputStream {
   public static void main(String[] args) {

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

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

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

         // receive a byte 
         System.out.println("Receiving Byte...");
         in.receive(71);
         System.out.println("Byte Received.");
      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

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

Receiving Byte...
Byte Received.

相關用法


注:本文由純淨天空篩選整理自 Java.io.PipedInputStream.read() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。