Java IO Tutorial - Java ObjectInputStream.readChar()








Syntax

ObjectInputStream.readChar() has the following syntax.

public char readChar()  throws IOException

Example

In the following code shows how to use ObjectInputStream.readChar() method.

//from  ww w  .  j  a v a 2 s .  c  o  m

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;

public class Main {

  public static void main(String[] args) throws Exception {

    char b = 'F';

    FileOutputStream out = new FileOutputStream("test.txt");
    ObjectOutputStream oout = new ObjectOutputStream(out);

    // write something in the file
    oout.writeChar(b);
    oout.writeChar('A');
    oout.flush();
    oout.close();
    // create an ObjectInputStream for the file we created before
    ObjectInputStream ois = new ObjectInputStream(new FileInputStream(
        "test.txt"));

    // read and print a char
    System.out.println(ois.readChar());

    // read and print a char
    System.out.println(ois.readChar());
    ois.close();
  }
}

The code above generates the following result.