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


Java Java.io.BufferedOutputStream用法及代碼示例


Java.io.BufferedInputStream

Java.io.BufferedOutputStream 類實現緩衝輸出流。通過設置這樣的輸出流,應用程序可以將字節寫入底層輸出流,而不必為每個寫入的字節調用底層係統。

字段

  • 受保護字節[] buf:存儲數據的內部緩衝區。
  • 受保護的int計數:緩衝區中的有效字節數。

構造函數和說明

  • BufferedOutputStream(輸出流輸出):創建新的緩衝輸出流以將數據寫入指定的基礎輸出流。
  • BufferedOutputStream(OutputStream 輸出,int 大小):創建一個新的緩衝輸出流,以將數據寫入具有指定緩衝區大小的指定基礎輸出流。

方法:

  • 無效flush():刷新此緩衝的輸出流。
    Syntax :public void flush()
               throws IOException
    Overrides:
    flush in class FilterOutputStream
    Throws:
    IOException
    
  • void write(byte[] b, int off, int len):將指定字節數組中從偏移量 off 開始的 len 個字節寫入此緩衝輸出流。
    Syntax :
    參數:
    b - the data.
    off - the start offset in the data.
    len - the number of bytes to write.
    Throws:
    IOException
    
  • 無效寫入(int b):將指定字節寫入此緩衝輸出流。
    Syntax :
    參數:
    b - the byte to be written.
    Throws:
    IOException
    

程序:


//Java program demonstrating BufferedOutputStream 
  
import java.io.*; 
  
class BufferedOutputStreamDemo 
{ 
    public static void main(String args[])throws Exception 
    { 
        FileOutputStream fout = new FileOutputStream("f1.txt"); 
          
        //creating bufferdOutputStream obj 
        BufferedOutputStream bout = new BufferedOutputStream(fout); 
  
        //illustrating write() method 
        for(int i = 65; i < 75; i++) 
        { 
            bout.write(i); 
        } 
          
        byte b[] = { 75, 76, 77, 78, 79, 80 }; 
        bout.write(b); 
  
        //illustrating flush() method 
        bout.flush(); 
          
        //illustrating close() method 
        bout.close(); 
        fout.close(); 
    } 
} 

輸出:

ABCDEFGHIJKLMNOP


相關用法


注:本文由純淨天空篩選整理自佚名大神的英文原創作品 Java.io.BufferedOutputStream class in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。