当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。