Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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);
        }

    }
}