All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.io.BufferedOutputStream Maven / Gradle / Ivy

The newest version!
package java.io;

public class BufferedOutputStream extends FilterOutputStream {
    protected byte[] buf;
    protected int count;

    public BufferedOutputStream(OutputStream out) {super(null);}
    public BufferedOutputStream(OutputStream out, int size) {super(null);}

    /**
     * @throws IOException
     */
    public void flush() throws IOException {}

    /**
     * @throws IOException
     */
    public void write(int b) throws IOException {}

    /**
     * @throws IOException
     */
    public void write(byte[] b, int off, int len) throws IOException {}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy