当前位置: 代码迷 >> J2SE >> console readPassWord() 的时分为什么显示NUllPointexception
  详细解决方案

console readPassWord() 的时分为什么显示NUllPointexception

热度:7707   发布时间:2013-02-25 00:00:00.0
console readPassWord() 的时候为什么显示NUllPointexception ?
RT
Java code
public class scannerAndconsol {    public static void main(String[] args) {        // TODO Auto-generated method stub                Console cons =System.console();        String psw = new String(cons.readPassword());        System.out.println(psw);    }}


------解决方案--------------------------------------------------------
cons对象为空了,你是直接在IDE里运行的吧,这样运行是没有Console对象的,你可以在IDE里编译好以后到命令行里直接用java命令运行
  相关解决方案