gausssoft.io
Class OutputStream
java.lang.Object
|
+--java.io.OutputStream
|
+--gausssoft.io.OutputStream
- public abstract class OutputStream
- extends OutputStream
This class is a variation on the normal OutputStream
class,
as it specifies that the write method which takes a byte array argument,
an offset argument and a size argument needs to be implemented, rather than
the normal write method.
- Author:
- Allan Crooks
- See Also:
OutputStream
Method Summary |
abstract void |
write(byte[] b,
int off,
int len)
|
void |
write(int n)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
OutputStream
protected OutputStream()
write
public void write(int n)
throws IOException
- Overrides:
write
in class OutputStream
write
public abstract void write(byte[] b,
int off,
int len)
throws IOException
- Overrides:
write
in class OutputStream