public interface RandomAccessSource
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes this source.
|
int |
get(long position)
Gets a byte at the specified position
|
int |
get(long position, byte[] bytes, int off, int len)
Gets an array at the specified position.
|
long |
length() |
int get(long position) throws IOException
position
-
IOException
int get(long position, byte[] bytes, int off, int len) throws IOException
position
- the position in the RandomAccessSource to read from
bytes
- output buffer
off
- offset into the output buffer where results will be placed
len
- the number of bytes to read
IOException
long length()
void close() throws IOException
IOException
Copyright © 2016. All rights reserved.