Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Input and display your password

Java Basic: Exercise-42 with Solution

Write a Java program to input and display your password.

Pictorial Presentation:

Java: Input and display your password

Sample Solution:

Java Code:

import java.io.Console;
public class Example42 {
	public static void main(String[] args) {
		Console cons;
		if ((cons = System.console()) != null) {
			char[] pass_ward = null;
			try {
				pass_ward = cons.readPassword("Input your Password:");
				System.out.println("Your password was: " + new String(pass_ward));
			} finally {
				if (pass_ward != null) {
					java.util.Arrays.fill(pass_ward, ' ');
				}
			}
		} else {
			throw new RuntimeException("Can't get password...No console");
		}
	}
}

Sample Output:

Input your Password:                                                    
Your password was: [email protected]

Flowchart:

Flowchart: Java exercises: Input and display your password

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to print the ascii value of a given character.
Next: Write a Java program to print the following string in a specific format .

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe