如何使用户在 Java GUI 中输入的密码在用户键入密码时不显示其值?
所以基本上,试图弄清楚如何隐藏用户在 GUI(即 java swing、awt)中输入的密码值。例如**,而不是标准密码。
So basically, trying to figure out how to hide values that users enter in the GUI (ie. java swing, awt) for their passwords. For example ** as opposed to the standard password.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
PasswordField
类。查看教程:
http://download.oracle.com/javase/tutorial/uiswing/components /密码字段.html
Use a
PasswordField
class.Check out the tutorial:
http://download.oracle.com/javase/tutorial/uiswing/components/passwordfield.html