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.FileNotFoundExceptionpublic FileHandle(java.lang.String name,
java.lang.String mode)
throws java.io.FileNotFoundException
java.io.FileNotFoundExceptionpublic java.io.RandomAccessFile getRandomAccessFile()
public void close()
throws java.io.IOException
IRandomAccessclose in interface IRandomAccessjava.io.IOExceptionpublic long getFilePointer()
throws java.io.IOException
IRandomAccessgetFilePointer in interface IRandomAccessjava.io.IOExceptionpublic long length()
throws java.io.IOException
IRandomAccesslength in interface IRandomAccessjava.io.IOExceptionpublic int read(byte[] b)
throws java.io.IOException
IRandomAccessread in interface IRandomAccessjava.io.IOExceptionpublic int read(byte[] b,
int off,
int len)
throws java.io.IOException
IRandomAccessread in interface IRandomAccessjava.io.IOExceptionpublic int read(java.nio.ByteBuffer buffer)
throws java.io.IOException
IRandomAccessread in interface IRandomAccessjava.io.IOExceptionpublic int read(java.nio.ByteBuffer buffer,
int off,
int len)
throws java.io.IOException
IRandomAccessread in interface IRandomAccessjava.io.IOExceptionpublic void seek(long pos)
throws java.io.IOException
IRandomAccessseek in interface IRandomAccessjava.io.IOExceptionpublic void write(java.nio.ByteBuffer buf)
throws java.io.IOException
IRandomAccesswrite in interface IRandomAccessjava.io.IOExceptionpublic void write(java.nio.ByteBuffer buf,
int off,
int len)
throws java.io.IOException
IRandomAccesswrite in interface IRandomAccessjava.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 char readChar()
throws java.io.IOException
readChar in interface java.io.DataInputjava.io.IOExceptionpublic double readDouble()
throws java.io.IOException
readDouble in interface java.io.DataInputjava.io.IOExceptionpublic float readFloat()
throws java.io.IOException
readFloat in interface java.io.DataInputjava.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 int readInt()
throws java.io.IOException
readInt in interface java.io.DataInputjava.io.IOExceptionpublic java.lang.String readLine()
throws java.io.IOException
readLine in interface java.io.DataInputjava.io.IOExceptionpublic long readLong()
throws java.io.IOException
readLong in interface java.io.DataInputjava.io.IOExceptionpublic short readShort()
throws java.io.IOException
readShort in interface java.io.DataInputjava.io.IOExceptionpublic int readUnsignedByte()
throws java.io.IOException
readUnsignedByte in interface java.io.DataInputjava.io.IOExceptionpublic int readUnsignedShort()
throws java.io.IOException
readUnsignedShort in interface java.io.DataInputjava.io.IOExceptionpublic java.lang.String readUTF()
throws java.io.IOException
readUTF in interface java.io.DataInputjava.io.IOExceptionpublic int skipBytes(int n)
throws java.io.IOException
skipBytes in interface java.io.DataInputjava.io.IOExceptionpublic void write(byte[] b)
throws java.io.IOException
write in interface java.io.DataOutputjava.io.IOExceptionpublic void write(byte[] b,
int off,
int len)
throws java.io.IOException
write in interface java.io.DataOutputjava.io.IOExceptionpublic void write(int b)
throws java.io.IOException
write in interface java.io.DataOutputjava.io.IOExceptionpublic void writeBoolean(boolean v)
throws java.io.IOException
writeBoolean in interface java.io.DataOutputjava.io.IOExceptionpublic void writeByte(int v)
throws java.io.IOException
writeByte in interface java.io.DataOutputjava.io.IOExceptionpublic void writeBytes(java.lang.String s)
throws java.io.IOException
writeBytes in interface java.io.DataOutputjava.io.IOExceptionpublic void writeChar(int v)
throws java.io.IOException
writeChar in interface java.io.DataOutputjava.io.IOExceptionpublic void writeChars(java.lang.String s)
throws java.io.IOException
writeChars in interface java.io.DataOutputjava.io.IOExceptionpublic void writeDouble(double v)
throws java.io.IOException
writeDouble in interface java.io.DataOutputjava.io.IOExceptionpublic void writeFloat(float v)
throws java.io.IOException
writeFloat in interface java.io.DataOutputjava.io.IOExceptionpublic void writeInt(int v)
throws java.io.IOException
writeInt in interface java.io.DataOutputjava.io.IOExceptionpublic void writeLong(long v)
throws java.io.IOException
writeLong in interface java.io.DataOutputjava.io.IOExceptionpublic void writeShort(int v)
throws java.io.IOException
writeShort in interface java.io.DataOutputjava.io.IOExceptionpublic void writeUTF(java.lang.String str)
throws java.io.IOException
writeUTF in interface java.io.DataOutputjava.io.IOExceptionpublic java.nio.ByteOrder getOrder()
IRandomAccessgetOrder in interface IRandomAccesspublic void setOrder(java.nio.ByteOrder order)
IRandomAccesssetOrder in interface IRandomAccessorder - Order to set.Copyright © 2014 Open Microscopy Environment