The Wayback Machine - https://web.archive.org/web/20200219195615/https://www.geeksforgeeks.org/java-io-bufferedoutputstream-class-java/amp/

Java.io.BufferedOutputStream class in Java

Java.io.BufferedInputStream class in Java

Java.io.BufferedOutputStream class implements a buffered output stream. By setting up such an output stream, an application can write bytes to the underlying output stream without necessarily causing a call to the underlying system for each byte written.

Fields



Constructor and Description

Methods:

Program:

filter_none

edit
close

play_arrow

link
brightness_4
code

//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();
    }
}
chevron_right

Output :

ABCDEFGHIJKLMNOP

This article is contributed by Nishant Sharma. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.



Article Tags :
Practice Tags :