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