Java.io.RandomAccessFile.readChar() Method



Description

The java.io.RandomAccessFile.readChar() method Reads a character from this file. This method reads two bytes from the file, starting at the current file pointer.

Declaration

Following is the declaration for java.io.RandomAccessFile.readChar() method.

public final char readChar()

Parameters

NA

Return Value

This method returns the next two bytes of this file, interpreted as a char.

Exception

  • IOException − If an I/O error occurs.

  • EOFException − If this file reaches the end before reading two bytes.

Example

The following example shows the usage of java.io.RandomAccessFile.readChar() method.

package com.tutorialspoint;

import java.io.*;

public class RandomAccessFileDemo {
   public static void main(String[] args) {

      try {
         char c = 'H';
         
         // create a new RandomAccessFile with filename test
         RandomAccessFile raf = new RandomAccessFile("c:/test.txt", "rw");

         // write something in the file
         raf.writeChar('C');

         // set the file pointer at 0 position
         raf.seek(0);

         // read char
         System.out.println("" + raf.readChar());

         // set the file pointer at 0 position
         raf.seek(0);

         // write a char at the start
         raf.writeChar(c);

         // set the file pointer at 0 position
         raf.seek(0);

         // read char
         System.out.println("" + raf.readChar());
      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

Assuming we have a text file c:/test.txt, which has the following content. This file will be used as an input for our example program −

ABCDE  

Let us compile and run the above program, this will produce the following result −

C
H
java_io_randomaccessfile.htm
Advertisements