Home »
Java programming language
Java RandomAccessFile readInt() Method with Example
RandomAccessFile Class readInt() method: Here, we are going to learn about the readInt() method of RandomAccessFile Class with its syntax and example.
Submitted by Preeti Jain, on March 23, 2020
RandomAccessFile Class readInt() method
- readInt() method is available in java.io package.
- readInt() method is used to read signed 32-bit integer value from this RandomAccessFile.
- readInt() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
-
readInt() method may throw an exception at the time of reading integer.
- IOException: This exception may throw an exception while performing input/output operation.
- EOFException: This exception may throw when the file pointer reaches EOF (End-Of-File) before reading 4 bytes.
Syntax:
public final int readInt();
Parameter(s):
- It does not accept any parameter.
Return value:
The return type of this method is int, it returns the 4 bytes of data from this RandomAccessFile manipulated as an int value.
Example:
// Java program to demonstrate the example
// of int readInt() method of
// RandomAccessFile
import java.io.*;
class RAFReadInt {
public static void main(String[] args) throws Exception {
// Instantiate a random access file
// object with file name and permissions
RandomAccessFile ra_f = new RandomAccessFile("e:/includehelp.txt", "rw");
// By using writeFloat() method is to
// write float to the file
ra_f.writeInt(500);
// Initially set the file pointer
// is at 1 for reading the file
ra_f.seek(1);
// By using readInt() method is to
// read int upto signed 4 bytes
// from the file
int i = ra_f.readInt();
System.out.println("ra_f.readInt(): " + i);
// By using close() method isto
// close this stream ran_f
ra_f.close();
}
}
Output
ra_f.readInt(): 128210