Package java.io
Class FileOutputStream

Public Method write

void write(byte[] buf)

Overrides:

Throws:

void write(byte[] buf, int offset, int len)

Overrides:

Throws:

void write(int b)

Overrides:

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Note that the OutputStream has to be closed in order to ensure that the data is written to the file.

write(byte[] buf) method:

Writes b.length bytes from the specified byte array to this file output stream.

write(byte[] buf, int offset, int len) method:

Writes len bytes from the specified byte array starting at offset off to this file output stream.

write(int b) method:

Writes the specified byte to this file output stream. Implements the write method of OutputStream.