| uk.org.ponder.streamutil.RandomAccessWrite
All known Subclasses: uk.org.ponder.streamutil.RandomAccessWriteWrapper,
RandomAccessWrite | public interface RandomAccessWrite extends RandomAccessRead(Code) | | This interface abstracts the properties of a writeable random access file.
|
Method Summary | |
public void | write(int b) Writes the specified byte to this file. | public void | write(byte b, int off, int len) Writes len bytes from the specified byte array starting at offset off to this file. |
write | public void write(int b) throws IOException(Code) | | Writes the specified byte to this file.
Parameters: b - the byte to be written. exception: IOException - if an I/O error occurs. |
write | public void write(byte b, int off, int len) throws IOException(Code) | | Writes len bytes from the specified byte array starting at offset off to this file.
Parameters: b - the data. Parameters: off - the start offset in the data. Parameters: len - - the number of bytes to write. exception: IOException - if an I/O error occurs. |
|
|