ByteArrayInputStream, FileInputStream, FilterInputStream, ObjectInputStream, PipedInputStream, SequenceInputStreampublic abstract class InputStream extends Object
| Constructor | Description |
|---|---|
InputStream() |
| Modifier and Type | Method | Description |
|---|---|---|
int |
available() |
|
void |
close() |
|
void |
mark(int var0) |
|
boolean |
markSupported() |
|
abstract int |
read() |
|
int |
read(byte[] var0) |
|
int |
read(byte[] var0,
int var1,
int var2) |
|
void |
reset() |
|
long |
skip(long var0) |
public int available()
throws IOException
IOExceptionpublic void close()
throws IOException
IOExceptionpublic void mark(int var0)
public boolean markSupported()
public abstract int read()
throws IOException
IOExceptionpublic int read(byte[] var0)
throws IOException
IOExceptionpublic int read(byte[] var0,
int var1,
int var2)
throws IOException
IOExceptionpublic void reset()
throws IOException
IOExceptionpublic long skip(long var0)
throws IOException
IOException