我在 JFrame 中有 2 个文本字段,当焦点从 textfield1 丢失时,我想验证 textfield1 中的数据。所以我已经使用FocusListener
并使用showMessageDialog()
了该FocusLost()
方法,然后将焦点重新设置回textfield1。当我单击除 textfield1 之外的 JFrame 窗口内的任何组件时,它工作正常,但是当我单击 JFrame 窗口外的任何位置时,showMessageDialog()
会调用两次,焦点转到 textfield2,而焦点应保留在 textfield1 上。
@Override
public void focusGained(FocusEvent e) {}
@Override
public void focusLost(FocusEvent e) {
boolean show = false;
String theRegex = "[0-9]";
Pattern checkRegex = Pattern.compile(theRegex);
Matcher regexMatcher = checkRegex.matcher( MemberID );
while ( !regexMatcher.find() && show==false){
JOptionPane.showMessageDialog(null,"Please enter numbers","Validation Error",JOptionPane.ERROR_MESSAGE);
MemberID_Text.requestFocusInWindow();
MemberID_Text.selectAll();
show = true;
}
}