Console readLine() method in Java with Examples Last Updated : 12 Jun, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 string containing the line that is read from the console. It returns null if the stream has ended. Exceptions: This method throws IOError if an I/O error occurs. Note: System.console() returns null in an online IDE. Below programs illustrate readLine() method in Console class in IO package: Program 1: Java // Java program to illustrate // Console readLine() 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; } // Read line String str = cnsl.readLine( "Enter string : "); // Print System.out.println( "You entered : " + str); } } Output: Program 2: Java // Java program to illustrate // Console readLine() 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; } // Read line String str = cnsl.readLine( "Enter string : "); // Print System.out.println( "You entered : " + str); } } Output: 2. The readLine(String, Object) method of Console class in Java is used to read a single line of text from the console by providing a formatted prompt. Syntax: public String readLine(String fmt, Object... args) Parameters: This method accepts two parameters: fmt - It represents the format of the string. args - It represents the arguments that are referenced by the format specifiers in the string format. Return value: This method returns the string that contains the line read from the console. It returns null if the stream is ended. Exceptions: IllegalFormatException - This method throws IllegalFormatException if string format contains an illegal syntax or a format specifier is not compatible with the given arguments or insufficient arguments given the format string or other conditions that are illegal. IOError - This method throws IOError if an I/O error occurs. Below programs illustrate readLine(String, Object) method in Console class in IO package: Program 1: Java // Java program to illustrate // Console readLine(String, Object) 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 fmt = "%1$4s %2$10s %3$10s%n"; // Read line String str = cnsl.readLine( fmt, "Enter", "string : "); // Print line System.out.println( "You entered : " + str); } } Output: Program 2: Java // Java program to illustrate // Console readLine(String, Object) 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 fmt = "%1$4s %2$10s %3$10s%n"; // Read line String str = cnsl.readLine( fmt, "Enter", "string : "); // Print line System.out.println( "You entered : " + str); } } Output: References: 1. https://docs.oracle.com/javase/10/docs/api/java/io/Console.html#readLine() 2. https://docs.oracle.com/javase/10/docs/api/java/io/Console.html#readLine(java.lang.String, java.lang.Object...) 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 reader() method in Java with Examples 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 2 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 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 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 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 DataInputStream readLong() method in Java with Examples The readLong() method of DataInputStream class in Java is used to read eight input bytes and returns a long value. This method reads the next eight bytes from the input stream and interprets it into long type and returns. Syntax: public final long readLong() throws IOException Specified By: This met 2 min read Like