Home » Java programming language

Java FilterReader ready() Method with Example

FilterReader Class ready() method: Here, we are going to learn about the ready() method of FilterReader Class with its syntax and example.
Submitted by Preeti Jain, on April 03, 2020

FilterReader Class ready() method

  • ready() method is available in java.io package.
  • ready() method is used to check whether this stream is ready to be read or not.
  • ready() 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.
  • ready() method does not throw an exception at the time of checking the state of the stream.

Syntax:

    public boolean ready();

Parameter(s):

  • It does not accept any parameter.

Return value:

The return type of the method is boolean, it returns true when this stream is ready to be read otherwise it returns false.

Example:

// Java program to demonstrate the example 
// of boolean ready() method of FilterReader

import java.io.*;

public class ReadyOfFR {
 public static void main(String[] args) throws Exception {
  Reader r_stm = null;
  FilterReader fr_stm = null;

  try {
   // Instantiates StringReader and 
   // FilterReader
   r_stm = new StringReader("JavaWorld!!!!");
   fr_stm = new FilterReader(r_stm) {};

   // By using ready() method is to
   // check whether the stream fr_stm is
   // ready to be read or not
   boolean status = fr_stm.ready();
   System.out.println("fr_stm.ready(): " + status);
  } catch (Exception ex) {
   System.out.println(ex.toString());
  } finally {
   // with the help of this block is to
   // free all necessary resources linked
   // with the stream
   if (fr_stm != null) {
    fr_stm.close();
   }
  }
 }
}

Output

fr_stm.ready(): true


Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.