Printing text with the Console class : Console « Development « Java Tutorial






import java.io.Console;

public class Main {
  public static void main(String[] args) {
    Console console = System.console();

    console.printf("%s%n", "this is a test");
  }
}








6.45.Console
6.45.1.Console based login
6.45.2.Printing text with the Console class
6.45.3.Masking a password with the Console class
6.45.4.Use Console class to read user input?
6.45.5.Console.ReadLine