如何显示密码字段中隐藏的密码?

How to show the word password masked in the password field?

enter image description here

我想要一个注册表单,其中用户名或密码的标签部分将出现在文本字段和密码字段中,但在密码字段中将被隐藏。谁能帮我? .. 在 Netbeans 和 Winform 上 例如:表单登录 facebook。我想要相同的用户名和密码

使用JPasswordField函数 jPasswordField.getPassword();

获取密码为 char[] .

使用jPasswordField1.setEchoChar('*') 将密码字符屏蔽为*.

如果您想查看您正在插入的值,请使用

  jPasswordField1.setEchoChar((char)0); 

设置值 0 表示您希望看到键入的文本,类似于标准 JTextField 的行为。