Console reader() method in Java with Examples Last Updated : 12 Jun, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report The reader() method of Console class in Java is used to retrieve the unique Reader object which is associated with the console. This reader() method is generally used by sophisticated applications. Simple applications that require only line oriented reading, normally use readLine() method instead of reader() method. Syntax: public Reader reader() Parameters: This method does not accept any parameter. Return value: This method returns Reader which is associated with the console. Exceptions: This method does not any throw exception. Note: System.console() returns null in an online IDE. Below programs illustrate reader() method in Console class in IO package: Program 1: Java // Java program to illustrate // Console reader() method import java.io.*; public class GFG { public static void main(String[] args) { // Create the console object Console cnsl = System.console(); if (cnsl == null) { System.out.println( "No console available"); return; } String str = cnsl.readLine( "Enter string : "); // Create scanner object scan = new Scanner(cnsl.reader()); while (scan.hasNext()) { // Read String str = scan.next(); // Print System.out.println(str); } } Output: Program 2: Java // Java program to illustrate // Console reader() method import java.io.*; public class GFG { public static void main(String[] args) { // Create the console object Console cnsl = System.console(); if (cnsl == null) { System.out.println( "No console available"); return; } String str = cnsl.readLine( "Enter string : "); // Create scanner object scan = new Scanner(cnsl.reader()); while (scan.hasNext()) { // Read String str = scan.next(); // Print System.out.println(str); } } Output: References: https://docs.oracle.com/javase/10/docs/api/java/io/Console.html#reader() Comment More infoAdvertise with us Next Article Console reader() method in Java with Examples P pp_pankaj Follow Improve Article Tags : Java Java-Functions Java-IO package Practice Tags : Java Similar Reads Console readLine() method in Java with Examples The readLine() method of Console class in Java is of two types: 1. The readLine() method of Console class in Java is used to read a single line of text from the console. Syntax: public String readLine() Parameters: This method does not accept any parameter. Return value: This method returns the stri 3 min read Console readPassword() method in Java with Examples The readPassword() method of Console class in Java is of two types: 1. The readPassword() method of Console class in Java is used to read a password or passphrase from the console with disabled echoing. Syntax: public char[] readPassword() Parameters: This method does not accept any parameter. Retur 4 min read Console flush() method in Java with Examples The flush() method of Console class in Java is used to flush the console and to force any buffered output to be written immediately. Syntax: public void flush() Specified By: This method is specified by flush() method of Flushable interface. Parameters: This method does not accept any parameter. Ret 2 min read Console writer() method in Java with Examples The writer() method of Console class in Java is used to retrieves the unique PrintWriter object which is associated with the console. Syntax: public PrintWriter writer() Parameters: This method does not accept any parameter. Return value: This method returns the PrintWriter which is associated with 1 min read Reader read() method in Java with Examples The read() method of Reader Class in Java is used to read a single character from the stream. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. This method is declared as abstract method. It 3 min read Like