|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object net.sf.sevenzipjbinding.impl.RandomAccessFileInStream
public class RandomAccessFileInStream
Implementation of IInStream
using RandomAccessFile
.
Field Summary |
---|
Fields inherited from interface net.sf.sevenzipjbinding.ISeekableStream |
---|
SEEK_CUR, SEEK_END, SEEK_SET |
Constructor Summary | |
---|---|
RandomAccessFileInStream(java.io.RandomAccessFile randomAccessFile)
Constructs instance of the class from random access file. |
Method Summary | |
---|---|
void |
close()
Closes random access file. |
int |
read(byte[] data)
Reads at least 1 and maximum data.length bytes from the in-stream. |
long |
seek(long offset,
int seekOrigin)
Move current location pointer to the new offset depending on seekOrigin .Note: depending on the archive format and the data size this method may be called from different threads. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public RandomAccessFileInStream(java.io.RandomAccessFile randomAccessFile)
randomAccessFile
- random access file to useMethod Detail |
---|
public long seek(long offset, int seekOrigin) throws SevenZipException
seekOrigin
.
seek
in interface ISeekableStream
offset
- absolute or relative offset in the stream to move toseekOrigin
- on of three possible seek origins:ISeekableStream.SEEK_SET
- offset
is an absolute offset to move to,
ISeekableStream.SEEK_CUR
- offset
is a relative offset to the current position in stream,
ISeekableStream.SEEK_END
- offset
is an offset from the end of the stream
(offset <= 0)
.
SevenZipException
- in error case. If this method ends with an exception, the current operation will be reported to 7-Zip
as failed. There are no guarantee, that there are no further call back methods will get called. The
first and last thrown exceptions will be saved and thrown later on from the originally called method
such as ISevenZipInArchive.extract()
or SevenZip.openInArchive()
. Up to
four exceptions depending on the situation can be saved for further analysis. See
SevenZipException
and SevenZipException.printStackTraceExtended()
for details.public int read(byte[] data) throws SevenZipException
data.length
bytes from the in-stream. If data.length == 0
0 should be returned. If data.length != 0
, then return value 0 indicates end-of-stream (EOF). This
means no more bytes can be read from the stream. data.length
. You must call read()
function in loop, if you need exact amount of data.
read
in interface ISequentialInStream
data
- buffer to get read data
data
array. 0 - represents end of stream.
SevenZipException
- in error case. If this method ends with an exception, the current operation will be reported to 7-Zip
as failed. There are no guarantee, that there are no further call back methods will get called. The
first and last thrown exceptions will be saved and thrown later on from the originally called method
such as ISevenZipInArchive.extract()
or SevenZip.openInArchive()
. Up to
four exceptions depending on the situation can be saved for further analysis. See
SevenZipException
and SevenZipException.printStackTraceExtended()
for details.public void close() throws java.io.IOException
close
in interface java.io.Closeable
java.io.IOException
- see RandomAccessFile.close()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |