borland Packages Class Hierarchy datastore Package
FileOutStream class
java.lang.Object
+----java.io.OutputStream
+----com.borland.datastore.FileOutStream
About the FileOutStream class
Properties Methods
The FileOutStream provides read, write, and seek access for file streams stored in a DataStore.
See also:
DataStore.open
FileOutStream properties
*Read-only properties **Write-only properties
Properties implemented in java.lang.Object
FileOutStream methods
Methods implemented in this class
Methods implemented in java.io.OutputStream
Methods implemented in java.lang.Object
- clone()
- equals(java.lang.Object)
- finalize()
- hashCode()
- notify()
- notifyAll()
- toString()
- wait()
- wait(long)
- wait(long, int)
FileOutStream methods
close()
public final void close()
Closes the file stream. This releases resources held by the DataStore.
Overrides:
java.io.OutputStream.close()
write(byte[], int, int)
public void write(byte[] buf, int offset, int length)
Writes the specified length bytes from buf starting at offset.
Overrides:
java.io.OutputStream.write(byte[], int, int)
write(int)
public void write(int b)
Writes to the file stream.
Overrides:
java.io.OutputStream.write(int)