首页 > 开发 > Java > 正文

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

2024-07-13 10:09:50
字体:
来源:转载
供稿:网友

javascript/34977.html">java的Console类的使用方法及实例

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

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 的控制台是用不了的。

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


注:相关教程知识阅读请移步到JAVA教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表