< prev index next >

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

Print this page

        

*** 325,345 **** * @param len the number of bytes that are written * @param append {@code true} to first advance the position to the * end of file * @exception IOException If an I/O error has occurred. */ ! private native void writeBytes(byte b[], int off, int len, boolean append) throws IOException; /** * Writes <code>b.length</code> bytes from the specified byte array * to this file output stream. * * @param b the data. * @exception IOException if an I/O error occurs. */ ! public void write(byte b[]) throws IOException { writeBytes(b, 0, b.length, fdAccess.getAppend(fd)); } /** * Writes <code>len</code> bytes from the specified byte array --- 325,345 ---- * @param len the number of bytes that are written * @param append {@code true} to first advance the position to the * end of file * @exception IOException If an I/O error has occurred. */ ! private native void writeBytes(byte[] b, int off, int len, boolean append) throws IOException; /** * Writes <code>b.length</code> bytes from the specified byte array * to this file output stream. * * @param b the data. * @exception IOException if an I/O error occurs. */ ! public void write(byte[] b) throws IOException { writeBytes(b, 0, b.length, fdAccess.getAppend(fd)); } /** * Writes <code>len</code> bytes from the specified byte array
*** 348,358 **** * @param b the data. * @param off the start offset in the data. * @param len the number of bytes to write. * @exception IOException if an I/O error occurs. */ ! public void write(byte b[], int off, int len) throws IOException { writeBytes(b, off, len, fdAccess.getAppend(fd)); } /** * Closes this file output stream and releases any system resources --- 348,358 ---- * @param b the data. * @param off the start offset in the data. * @param len the number of bytes to write. * @exception IOException if an I/O error occurs. */ ! public void write(byte[] b, int off, int len) throws IOException { writeBytes(b, off, len, fdAccess.getAppend(fd)); } /** * Closes this file output stream and releases any system resources
< prev index next >