gpt4 book ai didi

java - 如何使 "Enter"键的行为类似于在 JFrame 上提交

转载 作者:搜寻专家 更新时间:2023-11-01 01:29:00 26 4
gpt4 key购买 nike

我正在构建客户端/服务器应用程序。我想让用户在身份验证框架上轻松一些。

我想知道如何使用 enter 键将登录名和密码提交到数据库(触发操作)?

最佳答案

一种方便的方法依赖于 setDefaultButton() ,在此 example 中显示并在 How to Use Key Bindings 中提到。

JFrame f = new JFrame("Example");
Action accept = new AbstractAction("Accept") {

@Override
public void actionPerformed(ActionEvent e) {
// handle accept
}
};
private JButton b = new JButton(accept);
...
f.getRootPane().setDefaultButton(b);

关于java - 如何使 "Enter"键的行为类似于在 JFrame 上提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7525061/

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