我正在通过控制台开展银行业务计划。我希望在用户输入密码时隐藏密码。
我创建了自己的方法来读取密码并使用Console类中的readPassword()方法返回一个String:
/**
* Reads Password without allowing the console to show the characters
while the user is typing the password.
* @return
*/
public String readPass(){
String pass = "";
Console cnsl = System.console();
if(cnsl!=null){
char[] pword = cnsl.readPassword();
for(char c: pword){
pass+=c;
}
return pass;
}
return "";
}
从另一个类调用该方法:
/**
* Asks the user to enter their password. Then checks if the password is right.
* @param u
*/
public void checkPassword(User u){
boolean pa = false;
do{
System.out.print("Please enter your password: ");
//String pword = in.next();
String pword = b.readPass();
pa = u.checkPassword(pword);
if(pa){
System.out.println("\nLogin Successful...");
System.out.println("\nWelcome "+ u.getName() + "!");
enterAccount(u);
}
else{
System.out.println("That is the incorrect password. Please try again.\n");
}
}while(!pa);
}
提示密码的那一刻,执行了else块,结果是无限循环。
答案 0 :(得分:1)
如果您的控制台为空,则可能发生无限循环。在eclipse中有bug导致System.console的npe。
尝试使用Scanner测试代码。
请阅读此explanation
From console java doc 虚拟机是否具有控制台取决于底层平台以及虚拟机的调用方式。如果从交互式命令行启动虚拟机而不重定向标准输入和输出流,则其控制台将存在,并且通常将连接到启动虚拟机的键盘和显示器。如果虚拟机是自动启动的,例如后台作业调度程序,那么它通常没有控制台。
也可以将字符数组转换为字符串pass = new String(pword)
,而不是重复连接字符。
如果您想从IDE进行测试,请尝试使用扫描仪(输入时会显示密码),或者您可以创建一个小JDialog
并在其中嵌入JPasswordField