简体   繁体   中英

how to hide console input in eclipse in java using console input from user

System.out.println("please enter id ");
Console console = System.console();
char[] password = console.readPassword("Enter password");  
Arrays.fill(password, ' ');

I am getting java.lang.NullPointerException , I don't know how to get rid of this exception.

Sorry to be bearer of the bad news but that's an Eclipse bug which still hasn't been resolved yet. You can read all about it here Also the answer by Vijay Shankar in this post seems to be a workaround for this.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM