gpt4 book ai didi

java - JTextField 上的输入 validator 返回不正确

转载 作者:行者123 更新时间:2023-12-01 23:31:40 27 4
gpt4 key购买 nike

这是我的代码,我有两个文本字段,tf1tf2 :

public class MyInputVerifier extends InputVerifier {
@Override
public boolean verify(JComponent input) {
String name = input.getName();
if (name.equals("tf1")) {
System.out.println("in tf1");
String text = ((JTextField) input).getText().trim();
if (text.matches(".*\\d.*")) return false; // have digit
}
else if (name.equals("tf2")) {
System.out.println("in tf2");
String text = ((JTextField) input).getText().trim();
if (isNumeric2(text)) return true;
}
return false;
}

public boolean isNumeric2(String str) {
try {
Integer.parseInt(str);
return true;
} catch (Exception e) {
return false;
}
}

public static class Tester extends JFrame implements ActionListener {
JTextField tf1, tf2;
JButton okBtn;

public Tester() {
add(panel(), BorderLayout.CENTER);

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(400, 500);
setVisible(true);
}

public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new Tester();
}
});
}

public JPanel panel() {
JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT));
okBtn = new JButton("Ok");
okBtn.addActionListener(this);
tf1 = new JTextField(10);
tf1.setName("tf1");
tf2 = new JTextField(10);
tf2.setName("tf2");
tf1.setInputVerifier(new MyInputVerifier());
tf2.setInputVerifier(new MyInputVerifier());
panel.add(tf1);
// panel.add(tf2);
panel.add(okBtn);
return panel;
}

@Override
public void actionPerformed(ActionEvent e) {
MyInputVerifier inputVerifier = new MyInputVerifier();
if (e.getSource() == okBtn) {
if (inputVerifier.verify(tf2)) {
JOptionPane.showMessageDialog(null, "True in tf2");
} else JOptionPane.showMessageDialog(null, "False in tf2");
}
}
}
}

输出:

我输入10

on joption pane: false in tf2
on console: in tf1
in tf2

最佳答案

根据docJTextField 失去焦点时,将调用 verify() 方法。在您的代码中,当您单击 okbtn 时,tf1 会失去焦点。因此调用 tf1 的 verify() 方法并打印 in tf1

在 actionPerformed 中,您显式调用 verify() 方法,以便打印 in tf2 。由于 tf2 为空(即在 JPanel 中添加它的行已被注释):JOptionPane 在 tf2 中显示 false

我希望这些解释能够帮助您修复代码。您必须明白,您不需要自己调用 verify(),当字段失去焦点时,swing 框架会自动调用它。

关于java - JTextField 上的输入 validator 返回不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19177270/

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