Java tutorial
import java.io.Console; public class Main { public static void main(String[] args) throws Exception { String fmt = "%2$5s %3$10s%n"; Console cnsl = System.console(); if (cnsl != null) { String alpha = cnsl.readLine(fmt, "Your", "Name: "); System.out.println("Name is: " + alpha); char[] pwd = cnsl.readPassword(fmt, "Enter", "Password: "); System.out.println("Password is: " + pwd); } } }