位置:首頁 > Java技術 > Java.io包 > java.io.BufferedInputStream.Write(byte[], int, int)方法實例

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