java.io.BufferedInputStream.Write(byte[], int, int)方法範例


java.io.BufferedInputStream.Write(byte[], int, int) 方法寫入到流起始偏移掉從指定的位元組陣列b中的len個位元組。對於長度一樣大,此流的緩衝區將重新整理緩衝區並直接寫位元組到輸出流。

宣告

以下是java.io.BufferedOutputStream.write(byte[] b, int off, int len) 方法的宣告

public void write(byte[] b, int off, int len)

引數

  • b -- -- 位元組陣列作為資料源

  • off -- -- 資料源中開始的偏移

  • len -- -- 位元組寫入流的數量

返回值

此方法不返回任何值。

異常

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

例子

下面的例子顯示java.io.BufferedOutputStream.write(byte[] b, int off, int len) 方法的用法。

package com.yiibai;

import java.io.BufferedOutputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;

public class BufferedOutputStreamDemo {
   public static void main(String[] args) throws Exception {

      ByteArrayOutputStream baos = null;
      BufferedOutputStream bos = null;
		
      try{
         // create new output streams.
         baos = new ByteArrayOutputStream();
         bos = new BufferedOutputStream(baos);

         // assign values to the byte array 
         byte[] bytes = {1, 2, 3, 4, 5};

         // write byte array to the output stream
         bos.write(bytes, 0, 5);

         // flush the bytes to be written out to baos
         bos.flush();

         for (byte b:baos.toByteArray())
         {
            // prints byte
            System.out.print(b);
         }
      }catch(IOException e){

         // if any IOError occurs
         e.printStackTrace();
      }finally{
			
         // releases any system resources associated with the stream
         if(baos!=null)
            baos.close();
         if(bos!=null)
            bos.close();
      }
   }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

12345