|
DCT Lightfoot v3 API specification | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
This is the readable interface that all input streams implement
| Method Summary | |
int |
read()
read a byte |
int |
read(byte[] b,
int off,
int len)
read a number of bytes from the input stream and store into the byte array |
long |
skip(long n)
skip a number of bytes from the stream |
| Method Detail |
public int read()
throws IOException
IOException - if there is an IO error
public int read(byte[] b,
int off,
int len)
throws IOException
b - The array to write intooff - The offset to start writing tolen - The maximum number of bytes to read
IOException - if there is an IO error
public long skip(long n)
throws IOException
n - The number to skip
IOException - if there is an IOError
|
DCT Lightfoot v3 API specification | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||