The methods of Java.IO.RandomAccessFile are listed below. For a list of all members, see the RandomAccessFile Members list.
See Also: Inherited members from Java.Lang.Object
Close()Closes this file. | ||
Length()Returns the length of this file in bytes. | ||
Read()Reads a single byte from the current position in this file and returns it as an integer in the range from 0 to 255. | ||
Read(byte[])Reads bytes from the current position in this file and stores them in the byte array buffer. | ||
Read(byte[], int, int)Reads up to byteCount bytes from the current position in this file and stores them in the byte array buffer starting at byteOffset. | ||
ReadAsync()Documentation for this section has not yet been entered. | ||
ReadAsync(byte[])Documentation for this section has not yet been entered. | ||
ReadAsync(byte[], int, int)Documentation for this section has not yet been entered. | ||
ReadBoolean()Reads a boolean from the current position in this file. | ||
ReadBooleanAsync()Documentation for this section has not yet been entered. | ||
ReadByte()Reads an 8-bit byte from the current position in this file. | ||
ReadByteAsync()Documentation for this section has not yet been entered. | ||
ReadChar()Reads a big-endian 16-bit character from the current position in this file. | ||
ReadCharAsync()Documentation for this section has not yet been entered. | ||
ReadDouble()Reads a big-endian 64-bit double from the current position in this file. | ||
ReadDoubleAsync()Documentation for this section has not yet been entered. | ||
ReadFloat()Reads a big-endian 32-bit float from the current position in this file. | ||
ReadFloatAsync()Documentation for this section has not yet been entered. | ||
ReadFully(byte[])Equivalent to readFully(dst, 0, dst.length);. | ||
ReadFully(byte[], int, int)Reads byteCount bytes from this stream and stores them in the byte array dst starting at offset. | ||
ReadFullyAsync(byte[])Documentation for this section has not yet been entered. | ||
ReadFullyAsync(byte[], int, int)Documentation for this section has not yet been entered. | ||
ReadInt()Reads a big-endian 32-bit integer from the current position in this file. | ||
ReadIntAsync()Documentation for this section has not yet been entered. | ||
ReadLine()Reads a line of text form the current position in this file. | ||
ReadLineAsync()Documentation for this section has not yet been entered. | ||
ReadLong()Reads a big-endian 64-bit long from the current position in this file. | ||
ReadLongAsync()Documentation for this section has not yet been entered. | ||
ReadShort()Reads a big-endian 16-bit short from the current position in this file. | ||
ReadShortAsync()Documentation for this section has not yet been entered. | ||
ReadUnsignedByte()Reads an unsigned 8-bit byte from the current position in this file and returns it as an integer. | ||
ReadUnsignedByteAsync()Documentation for this section has not yet been entered. | ||
ReadUnsignedShort()Reads an unsigned big-endian 16-bit short from the current position in this file and returns it as an integer. | ||
ReadUnsignedShortAsync()Documentation for this section has not yet been entered. | ||
ReadUTF()Reads a string that is encoded in Java.IO.IDataInput from this file. | ||
ReadUTFAsync()Documentation for this section has not yet been entered. | ||
Seek(long)Moves this file's file pointer to a new position, from where following read, write or skip operations are done. | ||
SetLength(long)Sets the length of this file to newLength. | ||
SkipBytes(int)Skips over count bytes in this file. | ||
SkipBytesAsync(int)Documentation for this section has not yet been entered. | ||
Write(byte[])Writes the entire contents of the byte array buffer to this file, starting at the current file pointer. | ||
Write(int)Writes a byte to this file, starting at the current file pointer. | ||
Write(byte[], int, int)Writes byteCount bytes from the byte array buffer to this file, starting at the current file pointer and using byteOffset as the first position within buffer to get bytes. | ||
WriteAsync(byte[])Documentation for this section has not yet been entered. | ||
WriteAsync(int)Documentation for this section has not yet been entered. | ||
WriteAsync(byte[], int, int)Documentation for this section has not yet been entered. | ||
WriteBoolean(bool)Writes a boolean to this file as a single byte (1 for true, 0 for false), starting at the current file pointer. | ||
WriteBooleanAsync(bool)Documentation for this section has not yet been entered. | ||
WriteByte(int)Writes an 8-bit byte to this file, starting at the current file pointer. | ||
WriteByteAsync(int)Documentation for this section has not yet been entered. | ||
WriteBytes(string)Writes the low order 8-bit bytes from a string to this file, starting at the current file pointer. | ||
WriteBytesAsync(string)Documentation for this section has not yet been entered. | ||
WriteChar(int)Writes a big-endian 16-bit character to this file, starting at the current file pointer. | ||
WriteCharAsync(int)Documentation for this section has not yet been entered. | ||
WriteChars(string)Writes big-endian 16-bit characters from str to this file, starting at the current file pointer. | ||
WriteCharsAsync(string)Documentation for this section has not yet been entered. | ||
WriteDouble(double)Writes a big-endian 64-bit double to this file, starting at the current file pointer. | ||
WriteDoubleAsync(double)Documentation for this section has not yet been entered. | ||
WriteFloat(float)Writes a big-endian 32-bit float to this file, starting at the current file pointer. | ||
WriteFloatAsync(float)Documentation for this section has not yet been entered. | ||
WriteInt(int)Writes a big-endian 32-bit integer to this file, starting at the current file pointer. | ||
WriteIntAsync(int)Documentation for this section has not yet been entered. | ||
WriteLong(long)Writes a big-endian 64-bit long to this file, starting at the current file pointer. | ||
WriteLongAsync(long)Documentation for this section has not yet been entered. | ||
WriteShort(int)Writes a big-endian 16-bit short to this file, starting at the current file pointer. | ||
WriteShortAsync(int)Documentation for this section has not yet been entered. | ||
WriteUTF(string)Writes a string encoded with Java.IO.IDataInput to this file, starting at the current file pointer. | ||
WriteUTFAsync(string)Documentation for this section has not yet been entered. |