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


Java Java.io.PipedOutputStream.write()用法及代碼示例



描述

這個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.tutorialspoint;

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

相關用法


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