我对 Java 的 Console 对象,尤其是readPassword()
方法有一个可笑的困难。
我有当前代码读取密码两次,然后循环直到两个密码相同:
do {
dbPasswordOne = userInput.readPassword("Enter a password for the bookstall: ");
System.out.println(dbPasswordOne.toString());
dbPasswordTwo = userInput.readPassword("Re-enter the password: ");
System.out.println(dbPasswordTwo.toString());
} while (!Arrays.equals(dbPasswordOne, dbPasswordTwo));
在我看来,这应该可以正常工作(打印只是为了调试目的。但是,这是我在 Linux 终端中得到的输出:
Enter a password for the bookstall:
[C@9e4acce
Re-enter the password:
[C@40d0d75
无论我输入什么,每次运行它总是相同的两个无意义的字符串。任何帮助将不胜感激。