gpt4 book ai didi

java - 有 JPasswordField 的替代方案吗?

转载 作者:行者123 更新时间:2023-12-02 12:58:54 25 4
gpt4 key购买 nike

当输入类似密码时

yeast bulk seize is shows pain

每个人都可以听到敲击空格键的声音,因此在密码字段中显示空格似乎也是合乎逻辑的。所以我想要一些能够展示的东西

***** **** ***** ** ***** ****

而不是

******************************

这将使输入更容易,同时几乎不会降低安全性。

<小时/>

更新

更新 Riduidel 的评论之前请三思。当Bruce Schneier writes “是时候以明文形式显示大多数密码了”,那么显示一小部分密码也必须是正确的。特别是展示了只需聆听即可捕捉到的部分。

最佳答案

这是使用 setEchoChar() 的变体使密码在预定义的时间内可见:例如三秒。

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JPasswordField;
import javax.swing.Timer;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;

/** @see http://stackoverflow.com/questions/5339702 */
public class PasswordTest {

public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}

private static void createAndShowGui() {
JFrame jf = new JFrame("Test Password");
JPasswordField jpwd = new JPasswordField();
TimedPasswordListener tpl = new TimedPasswordListener(jpwd);
jpwd.getDocument().addDocumentListener(tpl);
jf.add(jpwd);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.setLocationRelativeTo(null);
jf.pack();
jf.setVisible(true);
}
}

class TimedPasswordListener implements DocumentListener, ActionListener {

private Timer timer = new Timer(3000, this);
private char echoChar;
private JPasswordField pwf;

public TimedPasswordListener(JPasswordField jp) {
pwf = jp;
timer.setRepeats(false);
}

public void insertUpdate(DocumentEvent e) {
showText(e);
}

public void removeUpdate(DocumentEvent e) {
showText(e);
}

public void changedUpdate(DocumentEvent e) {}

public void showText(DocumentEvent e) {
if (0 != pwf.getEchoChar()) {
echoChar = pwf.getEchoChar();
}
pwf.setEchoChar((char) 0);
timer.restart();
}

public void actionPerformed(ActionEvent e) {
pwf.setEchoChar(echoChar);
}
}

关于java - 有 JPasswordField 的替代方案吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5339702/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com