public class IndependentRandomAccessSource extends Object implements IRandomAccessSource
| Constructor and Description |
|---|
IndependentRandomAccessSource(IRandomAccessSource source)
Constructs a new IndependentRandomAccessSource object
|
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Does nothing - the underlying source is not closed
|
int |
get(long position)
Gets a byte at the specified position
|
int |
get(long position,
byte[] bytes,
int off,
int len)
Read an array of bytes of specified length from the specified position of source to the buffer applying the offset.
|
long |
length()
Gets the length of the source
|
public IndependentRandomAccessSource(IRandomAccessSource source)
source - the sourcepublic int get(long position)
throws IOException
get in interface IRandomAccessSourceposition - byte positionIOException - in case of any reading error.public int get(long position,
byte[] bytes,
int off,
int len)
throws IOException
get in interface IRandomAccessSourceposition - the position in the RandomAccessSource to read frombytes - output bufferoff - offset into the output buffer where results will be placedlen - the number of bytes to readIOException - in case of any I/O error.public long length()
length in interface IRandomAccessSourcepublic void close()
throws IOException
close in interface IRandomAccessSourceIOException - in case of any reading error.Copyright © 1998–2020 iText Group NV. All rights reserved.