< prev index next >

src/java.base/share/classes/java/io/ObjectOutput.java

Print this page

        

*** 60,79 **** * Writes an array of bytes. This method will block until the bytes * are actually written. * @param b the data to be written * @exception IOException If an I/O error has occurred. */ ! public void write(byte b[]) throws IOException; /** * Writes a sub array of bytes. * @param b the data to be written * @param off the start offset in the data * @param len the number of bytes that are written * @exception IOException If an I/O error has occurred. */ ! public void write(byte b[], int off, int len) throws IOException; /** * Flushes the stream. This will write any buffered * output bytes. * @exception IOException If an I/O error has occurred. --- 60,79 ---- * Writes an array of bytes. This method will block until the bytes * are actually written. * @param b the data to be written * @exception IOException If an I/O error has occurred. */ ! public void write(byte[] b) throws IOException; /** * Writes a sub array of bytes. * @param b the data to be written * @param off the start offset in the data * @param len the number of bytes that are written * @exception IOException If an I/O error has occurred. */ ! public void write(byte[] b, int off, int len) throws IOException; /** * Flushes the stream. This will write any buffered * output bytes. * @exception IOException If an I/O error has occurred.
< prev index next >