Console readPassword() method in Java with Examples Last Updated : 27 Sep, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report 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. Return value: This method returns a character array that contains the password or passphrase read from the console. It returns null if the stream is ended. Exceptions: This method throws IOError if an I/O error occurs. Note: System.console() returns null in an online IDE. Below programs illustrate readPassword() method in Console class in IO package: Program 1: Java // Java program to illustrate // Console readPassword() 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 username : "); // Print username System.out.println( "Username : " + str); // Read password // into character array char[] ch = cnsl.readPassword( "Enter password : "); // Print password System.out.println( "Password : " + ch); } } Output: Program 2: Java // Java program to illustrate // Console readPassword() 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 username : "); // Print username System.out.println( "Username : " + str); // Read password // into character array char[] ch = cnsl.readPassword( "Enter password : "); // Print password System.out.println( "Password : " + ch); } } Output: 2. The readPassword(String, Object) method of Console class in Java is used to read a password or passphrase from the console by providing a formatted prompt. It returns the password in the character array. Syntax: public char[] readPassword(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 character array that contains the password or passphrase 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 readPassword(String, Object) method in Console class in IO package: Program 1: Java // Java program to illustrate // Console readPassword(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 = "%2$5s %3$10s%n"; // Read line String un = cnsl.readLine( fmt, "Enter", "Username : "); // Print username System.out.println( "Username : " + un); // Read password // into character array char[] pwd = cnsl.readPassword( fmt, "Enter", "Password : "); // Print password System.out.println( "Password : " + pwd); } } Output: Program 2: Java // Java program to illustrate // Console readPassword(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 = "%2$5s %3$10s%n"; // Read line String un = cnsl.readLine( fmt, "Enter", "Username : "); // Print username System.out.println( "Username : " + un); // Read password // into character array char[] pwd = cnsl.readPassword( fmt, "Enter", "Password : "); // Print password System.out.println( "Password : " + pwd); } } Output: References: 1. https://docs.oracle.com/javase/10/docs/api/java/io/Console.html#readPassword() 2. https://docs.oracle.com/javase/10/docs/api/java/io/Console.html#readPassword(java.lang.String, java.lang.Object...) Comment More infoAdvertise with us Next Article Provider keys() 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 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 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 Reader ready() method in Java with Examples The ready() method of Reader Class in Java is used to check whether this Reader is ready to be read or not. It returns a boolean which states if the reader is ready. Syntax: public void ready() Parameters: This method does not accepts any parameters Return Value: This method returns a boolean value 3 min read Provider keys() method in Java with Examples The keys() method of java.security.Provider class is used to return an enumeration of the keys in this hashtable. Syntax: public Enumeration keys() Return Value: This method returns an enumeration of the keys in this hashtable. Below are the examples to illustrate the keys() method: Program 1: Java 2 min read KeyStore containsAlias() method in Java with Examples The containsAlias() method of java.security.KeyStore class is used to check the presence of the requested alias. Syntax: public final boolean containsAlias(String alias) throws KeyStoreException Parameter: This method seeks the name of the alias as a parameter of String type of which the entry is to 3 min read Like