Java.io.FilterReader.ready() Method



Description

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

Declaration

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

public boolean ready()

Parameters

NA

Return Value

The method returns true if the next read() is guaranteed not to block for input, else false.

Exception

IOException − If an I/O error occurs.

Example

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

package com.tutorialspoint;

import java.io.FilterReader;
import java.io.Reader;
import java.io.StringReader;

public class FilterReaderDemo {
   public static void main(String[] args) throws Exception {
      FilterReader fr = null;
      Reader r = null;
      boolean bool = false;
      
      try {
         // create new reader
         r = new StringReader("ABCDEF");
          
         // create new filter reader
         fr = new FilterReader(r) {
         };
         
         // true if the filter reader is ready to be read
         bool = fr.ready();
         
         // prints
         System.out.println("Ready to read? "+bool);
         
      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      } finally {
         // releases system resources associated with this stream
         if(r!=null)
            r.close();
         if(fr!=null)
            fr.close();
      }
   }
}

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

Ready to read? true
java_io_filterreader.htm
Advertisements