public abstract class InputStream extends Object implements AutoCloseable
| Constructor and Description |
|---|
InputStream() |
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
void |
close() |
void |
mark(int readlimit) |
boolean |
markSupported() |
abstract int |
read() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
void |
reset() |
long |
skip(long n) |
public int available()
throws IOException
IOExceptionpublic void close()
throws IOException
close in interface AutoCloseableIOExceptionpublic void mark(int readlimit)
public boolean markSupported()
public abstract int read()
throws IOException
IOExceptionpublic int read(byte[] b)
throws IOException
IOExceptionpublic int read(byte[] b,
int off,
int len)
throws IOException
IOExceptionpublic void reset()
throws IOException
IOExceptionpublic long skip(long n)
throws IOException
IOExceptionCopyright © 2026. All rights reserved.