可能重复:
System.Console() 返回 null
代码:
public class Demo {
public static void main(String[] args){
Console c = System.console();
if (c == null) {
System.err.println("No console.");
System.exit(1);
}else {
System.out.println("Console is.");
System.exit(0);
}
}
}
总是没有控制台。为什么 ?怎么修?谢谢。