Java.io.DataInputStream.readChar() Method



Description

The java.io.DataInputStream.readChar() method reads two bytes and returns one char value.

Declaration

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

public final char readChar()

Parameters

NA

Return Value

This method returns char value read.

Exception

  • IOException − If an I/O error occurs.

  • EOFException − If the stream reaches the end.

Example

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

package com.tutorialspoint;

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

public class DataInputStreamDemo {
   public static void main(String[] args) throws IOException {
      InputStream is = null;
      DataInputStream dis = null;
      FileOutputStream fos = null;
      DataOutputStream dos = null;
      byte[] buf = {65,66,67,68,69,70};
      
      try {
         // create file output stream
         fos = new FileOutputStream("c:\\test.txt");
         
         // create data output stream
         dos = new DataOutputStream(fos);
         
         // for each byte in the buffer
         for (byte b:buf) {
            // write character to the dos
            dos.writeChar(b);
         }
         
         // force bytes to the underlying stream
         dos.flush();
         
         // create file input stream
         is = new FileInputStream("c:\\test.txt");
         
         // create new data input stream
         dis = new DataInputStream(is);
         
         // read till end of the stream
         while(dis.available()>0) {
         
            // read character
            char c = dis.readChar();
            
            // print
            System.out.print(c);
         }
         
      } catch(Exception e) {
            
         e.printStackTrace();
      } finally {
         // releases all system resources from the streams
         if(is!=null)
            is.close();
         if(dos!=null)
            is.close();
         if(dis!=null)
            dis.close();
         if(fos!=null)
            fos.close();
      }
   }
}

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

ABCDEF
java_io_datainputstream.htm
Advertisements