Reader reader Console printf(String format, Object args) String readLine 描述 java.io.Console.reader() 方法检索与此控制台关联的唯一Reader对象。 声明 以下是java.io.Console.reader()方法的声明 public Reader reader() 参数 NA 返回值 此方法返回与控制台关联的阅读器。 异常 NA 实例 以下示例显示了java.io.Console.reader()方法的用法。 package com.tutorialspoint; import java.io.Console; import java.util.Scanner; public class ConsoleDemo { public static void main(String[] args) { Console cnsl = null; Scanner scan = null; try { // creates a console object cnsl = System.console(); // if console is not null if (cnsl != null) { // prints System.out.print("Enter name : "); // create new scanner object scan = new Scanner(cnsl.reader()); // read till the end of data while (scan.hasNext()) { // read next String str = scan.next(); // print System.out.println(str); } } } catch(Exception ex) { // if any error occurs ex.printStackTrace(); } } } 让我们编译并运行上面的程序,这将产生以下结果 Enter name : Master Programmer Master Programmer Console printf(String format, Object args) String readLine