Home » 
        Java programming language
    
    Java RandomAccessFile close() Method with Example
    
    
    
            
        RandomAccessFile Class close() method: Here, we are going to learn about the close() method of RandomAccessFile Class with its syntax and example.
        Submitted by Preeti Jain, on March 23, 2020
    
    RandomAccessFile Class close() method
    
        - close() method is available in java.io package.
- close() method is used to close this RandomAccessFile stream and free all other system resources linked with this stream.
- close() 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.
- close() method may throw an exception at the time of the closing stream.
 IOException: This exception may throw while performing input/output operation.
Syntax:
    public void close();
    
    Parameter(s):
    
        - It does not accept any parameter.
Return value:
    The return type of this method is void, it returns nothing.
    Example:
// Java program to demonstrate the example 
// of void close() method of RandomAccessFile
import java.io.*;
class RAFClose {
 public static void main(String[] args) throws Exception {
  String str = "Welcome, in Java World!!!";
  // Instantiate a random access file
  // object with file name and permissions
  RandomAccessFile ra_f = new RandomAccessFile("e:/includehelp.txt", "rw");
  // By using writeUTF() method is to 
  // write a string value to the file by using
  // UTF encoding scheme
  ra_f.writeUTF(str);
  // by using seek() method is to 
  // set the current file indicator
  // from where read/write could 
  // start i.e. we set here 0 so reading
  // will be done from 0 till EOF
  ra_f.seek(0);
  System.out.println("ra_f.readUTF(): " + ra_f.readUTF());
  // By using close() method isto
  // close this stream ran_f
  ra_f.close();
 }
}
Output
ra_f.readUTF(): Welcome, in Java World!!!
    
    
  
    Advertisement
    
    
    
  
  
    Advertisement