我正在编写一个 GUI 程序,它具有 JPasswordField 来接收来自用户的文本。然后我使用这个将这个值转换为字符串,如下所示:
char[] pass = txtPass.getPassword(); //where txtPass is the JPasswordField
System.out.println("Password:");
////////////////Check password/////
for (int i=0; i< pass.length; i++)
System.out.println(pass[i]);
System.out.println("String pass"+ pass.toString());
但是,我执行应用程序的所有内容,我都会收到与 pass.toString() 不同的内容。我希望它们是独一无二的,这样我就可以在上面做更多的密码学功能。