📜  Java Java类

📅  最后修改于: 2022-05-13 01:54:20.607000             🧑  作者: Mango

Java Java类

Java Java类

Java.io.BufferedOutputStream 类实现了一个缓冲的输出流。通过设置这样的输出流,应用程序可以将字节写入底层输出流,而不必为每个写入的字节调用底层系统。

字段

  • protected byte[] buf :存储数据的内部缓冲区。
  • protected int count:缓冲区中的有效字节数。

构造函数和描述

  • BufferedOutputStream(OutputStream out) :创建一个新的缓冲输出流,将数据写入指定的底层输出流。
  • BufferedOutputStream(OutputStream out, int size) :创建一个新的缓冲输出流,以将数据写入具有指定缓冲区大小的指定底层输出流。

方法:

  • void 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 :
    Parameters:
    b - the data.
    off - the start offset in the data.
    len - the number of bytes to write.
    Throws:
    IOException
    
  • void write(int b) :将指定字节写入此缓冲输出流。
    Syntax :
    Parameters:
    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