public class RandomAccessFileOrArray
extends java.lang.Object
implements java.io.DataInput
| Modifier and Type | Field and Description |
|---|---|
(package private) byte[] |
arrayIn |
(package private) int |
arrayInPtr |
(package private) byte |
back |
(package private) java.lang.String |
filename |
(package private) boolean |
isBack |
(package private) boolean |
plainRandomAccess |
(package private) MappedRandomAccessFile |
rf |
private int |
startOffset
Holds value of property startOffset.
|
(package private) java.io.RandomAccessFile |
trf |
| Constructor and Description |
|---|
RandomAccessFileOrArray(byte[] arrayIn) |
RandomAccessFileOrArray(java.io.InputStream is) |
RandomAccessFileOrArray(RandomAccessFileOrArray file) |
RandomAccessFileOrArray(java.lang.String filename) |
RandomAccessFileOrArray(java.lang.String filename,
boolean forceRead,
boolean plainRandomAccess) |
RandomAccessFileOrArray(java.net.URL url) |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
int |
getFilePointer() |
java.nio.ByteBuffer |
getNioByteBuffer() |
int |
getStartOffset()
Getter for property startOffset.
|
static byte[] |
InputStreamToArray(java.io.InputStream is) |
protected void |
insureOpen() |
boolean |
isOpen() |
int |
length() |
void |
pushBack(byte b) |
int |
read() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar() |
char |
readCharLE()
Reads a Unicode character from this stream in little-endian order.
|
double |
readDouble() |
double |
readDoubleLE() |
float |
readFloat() |
float |
readFloatLE() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt() |
int |
readIntLE()
Reads a signed 32-bit integer from this stream in little-endian order.
|
java.lang.String |
readLine() |
long |
readLong() |
long |
readLongLE() |
short |
readShort() |
short |
readShortLE()
Reads a signed 16-bit number from this stream in little-endian order.
|
int |
readUnsignedByte() |
long |
readUnsignedInt()
Reads an unsigned 32-bit integer from this stream.
|
long |
readUnsignedIntLE() |
int |
readUnsignedShort() |
int |
readUnsignedShortLE()
Reads an unsigned 16-bit number from this stream in little-endian order.
|
java.lang.String |
readUTF() |
void |
reOpen() |
void |
seek(int pos) |
void |
seek(long pos) |
void |
setStartOffset(int startOffset)
Setter for property startOffset.
|
long |
skip(long n) |
int |
skipBytes(int n) |
MappedRandomAccessFile rf
java.io.RandomAccessFile trf
boolean plainRandomAccess
java.lang.String filename
byte[] arrayIn
int arrayInPtr
byte back
boolean isBack
private int startOffset
public RandomAccessFileOrArray(java.lang.String filename)
throws java.io.IOException
java.io.IOExceptionpublic RandomAccessFileOrArray(java.lang.String filename,
boolean forceRead,
boolean plainRandomAccess)
throws java.io.IOException
java.io.IOExceptionpublic RandomAccessFileOrArray(java.net.URL url)
throws java.io.IOException
java.io.IOExceptionpublic RandomAccessFileOrArray(java.io.InputStream is)
throws java.io.IOException
java.io.IOExceptionpublic RandomAccessFileOrArray(byte[] arrayIn)
public RandomAccessFileOrArray(RandomAccessFileOrArray file)
public static byte[] InputStreamToArray(java.io.InputStream is)
throws java.io.IOException
java.io.IOExceptionpublic void pushBack(byte b)
public int read()
throws java.io.IOException
java.io.IOExceptionpublic int read(byte[] b,
int off,
int len)
throws java.io.IOException
java.io.IOExceptionpublic int read(byte[] b)
throws java.io.IOException
java.io.IOExceptionpublic void readFully(byte[] b)
throws java.io.IOException
readFully in interface java.io.DataInputjava.io.IOExceptionpublic void readFully(byte[] b,
int off,
int len)
throws java.io.IOException
readFully in interface java.io.DataInputjava.io.IOExceptionpublic long skip(long n)
throws java.io.IOException
java.io.IOExceptionpublic int skipBytes(int n)
throws java.io.IOException
skipBytes in interface java.io.DataInputjava.io.IOExceptionpublic void reOpen()
throws java.io.IOException
java.io.IOExceptionprotected void insureOpen()
throws java.io.IOException
java.io.IOExceptionpublic boolean isOpen()
public void close()
throws java.io.IOException
java.io.IOExceptionpublic int length()
throws java.io.IOException
java.io.IOExceptionpublic void seek(int pos)
throws java.io.IOException
java.io.IOExceptionpublic void seek(long pos)
throws java.io.IOException
java.io.IOExceptionpublic int getFilePointer()
throws java.io.IOException
java.io.IOExceptionpublic boolean readBoolean()
throws java.io.IOException
readBoolean in interface java.io.DataInputjava.io.IOExceptionpublic byte readByte()
throws java.io.IOException
readByte in interface java.io.DataInputjava.io.IOExceptionpublic int readUnsignedByte()
throws java.io.IOException
readUnsignedByte in interface java.io.DataInputjava.io.IOExceptionpublic short readShort()
throws java.io.IOException
readShort in interface java.io.DataInputjava.io.IOExceptionpublic final short readShortLE()
throws java.io.IOException
b1 and b2, where each of the two values is
between 0 and 255, inclusive, then the
result is equal to:
(short)((b2 << 8) | b1)
This method blocks until the two bytes are read, the end of the stream is detected, or an exception is thrown.
java.io.EOFException - if this stream reaches the end before reading
two bytes.java.io.IOException - if an I/O error occurs.public int readUnsignedShort()
throws java.io.IOException
readUnsignedShort in interface java.io.DataInputjava.io.IOExceptionpublic final int readUnsignedShortLE()
throws java.io.IOException
b1 and b2, where
0 <= b1, b2 <= 255,
then the result is equal to:
(b2 << 8) | b1
This method blocks until the two bytes are read, the end of the stream is detected, or an exception is thrown.
java.io.EOFException - if this stream reaches the end before reading
two bytes.java.io.IOException - if an I/O error occurs.public char readChar()
throws java.io.IOException
readChar in interface java.io.DataInputjava.io.IOExceptionpublic final char readCharLE()
throws java.io.IOException
b1 and b2, where
0 <= b1, b2 <= 255,
then the result is equal to:
(char)((b2 << 8) | b1)
This method blocks until the two bytes are read, the end of the stream is detected, or an exception is thrown.
java.io.EOFException - if this stream reaches the end before reading
two bytes.java.io.IOException - if an I/O error occurs.public int readInt()
throws java.io.IOException
readInt in interface java.io.DataInputjava.io.IOExceptionpublic final int readIntLE()
throws java.io.IOException
b1,
b2, b3, and b4, where
0 <= b1, b2, b3, b4 <= 255,
then the result is equal to:
(b4 << 24) | (b3 << 16) + (b2 << 8) + b1
This method blocks until the four bytes are read, the end of the stream is detected, or an exception is thrown.
int.java.io.EOFException - if this stream reaches the end before reading
four bytes.java.io.IOException - if an I/O error occurs.public final long readUnsignedInt()
throws java.io.IOException
b1,
b2, b3, and b4, where
0 <= b1, b2, b3, b4 <= 255,
then the result is equal to:
(b1 << 24) | (b2 << 16) + (b3 << 8) + b4
This method blocks until the four bytes are read, the end of the stream is detected, or an exception is thrown.
long.java.io.EOFException - if this stream reaches the end before reading
four bytes.java.io.IOException - if an I/O error occurs.public final long readUnsignedIntLE()
throws java.io.IOException
java.io.IOExceptionpublic long readLong()
throws java.io.IOException
readLong in interface java.io.DataInputjava.io.IOExceptionpublic final long readLongLE()
throws java.io.IOException
java.io.IOExceptionpublic float readFloat()
throws java.io.IOException
readFloat in interface java.io.DataInputjava.io.IOExceptionpublic final float readFloatLE()
throws java.io.IOException
java.io.IOExceptionpublic double readDouble()
throws java.io.IOException
readDouble in interface java.io.DataInputjava.io.IOExceptionpublic final double readDoubleLE()
throws java.io.IOException
java.io.IOExceptionpublic java.lang.String readLine()
throws java.io.IOException
readLine in interface java.io.DataInputjava.io.IOExceptionpublic java.lang.String readUTF()
throws java.io.IOException
readUTF in interface java.io.DataInputjava.io.IOExceptionpublic int getStartOffset()
public void setStartOffset(int startOffset)
startOffset - New value of property startOffset.public java.nio.ByteBuffer getNioByteBuffer()
throws java.io.IOException
java.io.IOException