java的Console类的使用方法及实例

时间:2021-10-05 07:41:07

javaConsole类的使用方法及实例

JDK 6中提供了java.io.Console类专用来访问基于字符的控制台设备。如果你的Java程序要与Windows下的cmd或者Linux下的Terminal交互,就可以用这个Java Console类代劳。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import java.io.Console;
import java.io.PrintWriter;
 
public class TestConsole {
 
  public static void main(String[] args) {
    Console cons = System.console();
    if (cons != null) {
      // -------------------------
      PrintWriter printWriter = cons.writer();
      printWriter.write("input:");
      cons.flush();
      // -------------------------
      String str1 = cons.readLine();
      // -------------------------
      cons.format("%s", str1);
    }
  }
}

Java.io.Console 只能用在标准输入、输出流未被重定向的原始控制台中使用,在 Eclipse 或者其他 IDE 的控制台是用不了的。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://blog.csdn.net/aotian16/article/details/6588556