public class FileHandle extends java.lang.Object implements IRandomAccess
IRandomAccess
,
RandomAccessFile
Modifier and Type | Field and Description |
---|---|
protected java.io.RandomAccessFile |
raf
The random access file object backing this FileHandle.
|
Constructor and Description |
---|
FileHandle(java.io.File file,
java.lang.String mode)
Creates a random access file stream to read from, and
optionally to write to, the file specified by the File argument.
|
FileHandle(java.lang.String name,
java.lang.String mode)
Creates a random access file stream to read from, and
optionally to write to, a file with the specified name.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes this random access stream and releases
any system resources associated with the stream.
|
long |
getFilePointer()
Returns the current offset in this stream.
|
java.nio.ByteOrder |
getOrder()
Returns the current order of the stream.
|
java.io.RandomAccessFile |
getRandomAccessFile()
Gets the random access file object backing this FileHandle.
|
long |
length()
Returns the length of this stream.
|
int |
read(byte[] b)
Reads up to b.length bytes of data
from this stream into an array of bytes.
|
int |
read(byte[] b,
int off,
int len)
Reads up to len bytes of data from this stream into an array of bytes.
|
int |
read(java.nio.ByteBuffer buffer)
Reads up to buffer.capacity() bytes of data
from this stream into a ByteBuffer.
|
int |
read(java.nio.ByteBuffer buffer,
int off,
int len)
Reads up to len bytes of data from this stream into a ByteBuffer.
|
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar() |
double |
readDouble() |
float |
readFloat() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt() |
java.lang.String |
readLine() |
long |
readLong() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
java.lang.String |
readUTF() |
void |
seek(long pos)
Sets the stream pointer offset, measured from the beginning
of this stream, at which the next read or write occurs.
|
void |
setOrder(java.nio.ByteOrder order)
Sets the byte order of the stream.
|
int |
skipBytes(int n) |
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(java.nio.ByteBuffer buf)
Writes up to buffer.capacity() bytes of data from the given
ByteBuffer to this stream.
|
void |
write(java.nio.ByteBuffer buf,
int off,
int len)
Writes up to len bytes of data from the given ByteBuffer to this
stream.
|
void |
write(int b) |
void |
writeBoolean(boolean v) |
void |
writeByte(int v) |
void |
writeBytes(java.lang.String s) |
void |
writeChar(int v) |
void |
writeChars(java.lang.String s) |
void |
writeDouble(double v) |
void |
writeFloat(float v) |
void |
writeInt(int v) |
void |
writeLong(long v) |
void |
writeShort(int v) |
void |
writeUTF(java.lang.String str) |
protected java.io.RandomAccessFile raf
public FileHandle(java.io.File file, java.lang.String mode) throws java.io.FileNotFoundException
java.io.FileNotFoundException
public FileHandle(java.lang.String name, java.lang.String mode) throws java.io.FileNotFoundException
java.io.FileNotFoundException
public java.io.RandomAccessFile getRandomAccessFile()
public void close() throws java.io.IOException
IRandomAccess
close
in interface IRandomAccess
java.io.IOException
public long getFilePointer() throws java.io.IOException
IRandomAccess
getFilePointer
in interface IRandomAccess
java.io.IOException
public long length() throws java.io.IOException
IRandomAccess
length
in interface IRandomAccess
java.io.IOException
public int read(byte[] b) throws java.io.IOException
IRandomAccess
read
in interface IRandomAccess
java.io.IOException
public int read(byte[] b, int off, int len) throws java.io.IOException
IRandomAccess
read
in interface IRandomAccess
java.io.IOException
public int read(java.nio.ByteBuffer buffer) throws java.io.IOException
IRandomAccess
read
in interface IRandomAccess
java.io.IOException
public int read(java.nio.ByteBuffer buffer, int off, int len) throws java.io.IOException
IRandomAccess
read
in interface IRandomAccess
java.io.IOException
public void seek(long pos) throws java.io.IOException
IRandomAccess
seek
in interface IRandomAccess
java.io.IOException
public void write(java.nio.ByteBuffer buf) throws java.io.IOException
IRandomAccess
write
in interface IRandomAccess
java.io.IOException
public void write(java.nio.ByteBuffer buf, int off, int len) throws java.io.IOException
IRandomAccess
write
in interface IRandomAccess
java.io.IOException
public boolean readBoolean() throws java.io.IOException
readBoolean
in interface java.io.DataInput
java.io.IOException
public byte readByte() throws java.io.IOException
readByte
in interface java.io.DataInput
java.io.IOException
public char readChar() throws java.io.IOException
readChar
in interface java.io.DataInput
java.io.IOException
public double readDouble() throws java.io.IOException
readDouble
in interface java.io.DataInput
java.io.IOException
public float readFloat() throws java.io.IOException
readFloat
in interface java.io.DataInput
java.io.IOException
public void readFully(byte[] b) throws java.io.IOException
readFully
in interface java.io.DataInput
java.io.IOException
public void readFully(byte[] b, int off, int len) throws java.io.IOException
readFully
in interface java.io.DataInput
java.io.IOException
public int readInt() throws java.io.IOException
readInt
in interface java.io.DataInput
java.io.IOException
public java.lang.String readLine() throws java.io.IOException
readLine
in interface java.io.DataInput
java.io.IOException
public long readLong() throws java.io.IOException
readLong
in interface java.io.DataInput
java.io.IOException
public short readShort() throws java.io.IOException
readShort
in interface java.io.DataInput
java.io.IOException
public int readUnsignedByte() throws java.io.IOException
readUnsignedByte
in interface java.io.DataInput
java.io.IOException
public int readUnsignedShort() throws java.io.IOException
readUnsignedShort
in interface java.io.DataInput
java.io.IOException
public java.lang.String readUTF() throws java.io.IOException
readUTF
in interface java.io.DataInput
java.io.IOException
public int skipBytes(int n) throws java.io.IOException
skipBytes
in interface java.io.DataInput
java.io.IOException
public void write(byte[] b) throws java.io.IOException
write
in interface java.io.DataOutput
java.io.IOException
public void write(byte[] b, int off, int len) throws java.io.IOException
write
in interface java.io.DataOutput
java.io.IOException
public void write(int b) throws java.io.IOException
write
in interface java.io.DataOutput
java.io.IOException
public void writeBoolean(boolean v) throws java.io.IOException
writeBoolean
in interface java.io.DataOutput
java.io.IOException
public void writeByte(int v) throws java.io.IOException
writeByte
in interface java.io.DataOutput
java.io.IOException
public void writeBytes(java.lang.String s) throws java.io.IOException
writeBytes
in interface java.io.DataOutput
java.io.IOException
public void writeChar(int v) throws java.io.IOException
writeChar
in interface java.io.DataOutput
java.io.IOException
public void writeChars(java.lang.String s) throws java.io.IOException
writeChars
in interface java.io.DataOutput
java.io.IOException
public void writeDouble(double v) throws java.io.IOException
writeDouble
in interface java.io.DataOutput
java.io.IOException
public void writeFloat(float v) throws java.io.IOException
writeFloat
in interface java.io.DataOutput
java.io.IOException
public void writeInt(int v) throws java.io.IOException
writeInt
in interface java.io.DataOutput
java.io.IOException
public void writeLong(long v) throws java.io.IOException
writeLong
in interface java.io.DataOutput
java.io.IOException
public void writeShort(int v) throws java.io.IOException
writeShort
in interface java.io.DataOutput
java.io.IOException
public void writeUTF(java.lang.String str) throws java.io.IOException
writeUTF
in interface java.io.DataOutput
java.io.IOException
public java.nio.ByteOrder getOrder()
IRandomAccess
getOrder
in interface IRandomAccess
public void setOrder(java.nio.ByteOrder order)
IRandomAccess
setOrder
in interface IRandomAccess
order
- Order to set.Copyright © 2014 Open Microscopy Environment