Java.io.Reader.ready() Method



Description

The java.io.Reader.ready() method tells whether this stream is ready to be read.

Declaration

Following is the declaration for java.io.Reader.ready() method.

public boolean ready()

Parameters

NA

Return Value

This method returns true if the next read() is guaranteed not to block for input, false otherwise. Note that returning false does not guarantee that the next read will block.

Exception

IOException − If an I/O error occurs.

Example

The following example shows the usage of java.io.Reader.ready() method.

package com.tutorialspoint;

import java.io.*;

public class ReaderDemo {
   public static void main(String[] args) {
      String s = "Hello World";

      // create a new StringReader
      Reader reader = new StringReader(s);

      try {
         // check if reader is ready
         System.out.println("" + reader.ready());

         // read the first five chars
         for (int i = 0; i < 5; i++) {
            char c = (char) reader.read();
            System.out.print("" + c);
         }

         // change line
         System.out.println();

         // close the stream
         reader.close();

      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

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

true
Hello
java_io_reader.htm
Advertisements