Java I/O How to - Read value from console with Scanner








Question

We would like to know how to read value from console with Scanner.

Answer

import java.util.Scanner;

public class Main {
  public static void main(String[] args) {
    Scanner scanInput = new Scanner(System.in);
    String input = scanInput.nextLine();
    System.out.println("The input is : " + input);
  }
}