Package java.io
Class RandomAccessFile
void write(byte[] buf)
Throws:
void write(byte[] buf, int offset, int len)
Throws:
void write(int b)
Throws:
_INSERT_METHOD_SIGNATURE_HERE_
Description:
write(byte[] buf) method:
Writes b.length bytes from the specified byte array to this file, starting at the current file pointer. The file pointer will be adjusted by the number of bytes written.
write(byte[] buf, int offset, int len) method:
Writes len bytes to this file, taken from the specified byte array starting at offset off in the array. The file pointer will be adjusted by the number of bytes written.
write(int b) method:
Writes the specified byte to this file. The write starts at the current file pointer. The file pointer will be adjusted by the number of bytes written.