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


Java Java.io.BufferedOutputStream.Write()用法及代碼示例



描述

這個java.io.BufferedInputStream.Write(byte[], int, int)方法從偏移量開始寫入流offlen來自指定字節數組的字節b.對於與此流的緩衝區一樣大的長度,將刷新緩衝區並將字節直接寫入輸出流。

聲明

以下是聲明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.tutorialspoint;

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

public class BufferedOutputStreamDemo {
   public static void main(String[] args) throws Exception {
      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

相關用法


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