public interface IlvVMAPDataInput
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes this input stream and releases any system resources associated with the stream.
|
int |
read()
Reads the next byte of data from the input stream.
|
int |
read(byte[] b,
int off,
int len)
Reads up to
len bytes of data from the input stream into an array of bytes. |
void |
seek(long pos)
Sets the file-pointer offset, measured from the beginning of this file, at which the next
read or write occurs.
|
int read() throws IOException
IOException
int read(byte[] b, int off, int len) throws IOException
len
bytes of data from the input stream into an array of bytes.b
- The buffer into which the data is read.off
- The start offset in array b at which the data is written.len
- The maximum number of bytes to read.IOException
void close() throws IOException
IOException
void seek(long pos) throws IOException
pos
- The offset position, measured in bytes from the beginning of the file, at which
to set the file pointer.IOException
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.