Java tutorial
import java.io.Console; public class Main { public static void main(String[] args) throws Exception { Console cnsl = System.console(); if (cnsl != null) { String name = cnsl.readLine("Name: "); System.out.println("Name entered : " + name); } } }