Scanner is versatile, allowing you to read various data types from the console.
Source Code
Scanner scanner = new Scanner(System.in);
System.out.print("Enter username: ");
String username = scanner.nextLine();
System.out.println("Username is: " + username);