我有2个JTextField的情况:
JTextField txtJobType, txtPriorityCode;
这是我所需要的功能:
当在“管理”在txtJobType用户类型和点击选项卡(或点击了)错误检查,以查看该字段是否为空,或者如果输入的文本在数据库中存在。 我已经做了的方法是:
private void txtJobTypeFocusLost(java.awt.event.FocusEvent evt) {
System.out.println("JobType Focus Lost");
if (!checkFieldExists(txtJobType.getText(), "jobType", "jobCode",
JobType.class) || txtJobType.getText().isEmpty()) {
txtJobType.requestFocusInWindow();
txtJobType.selectAll();
} else {
}
}
因此,如果该字段不存在或文本为空,然后将焦点移回到txtJobType并突出显示所有文本(如果有的话)
这工作没有问题。 不过,我有一个需要具有完全相同的行为txtPriorityCode领域。 所以我做了:
private void txtPriorityCodeFocusLost(java.awt.event.FocusEvent evt) {
System.out.println("PriorityCode Focus Lost");
if (!checkFieldExists(txtPriorityCode.getText(), "priority", "priorityCode",
Priority.class) || txtPriorityCode.getText().isEmpty()) {
txtPriorityCode.requestFocusInWindow();
txtPriorityCode.selectAll();
}
}
这就是问题开始的地方:如果用户离开jobType和标签,以优先级,则代码试图回到焦点返回到jobtype,但由于优先级也是在这一点上的空白,它会尝试从jobtype重心转回,造成这种输出:
PriorityCode Focus Lost
JobType Focus Lost
PriorityCode Focus Lost
JobType Focus Lost
我如何能实现这一行为的任何帮助表示赞赏,因为我要为其他至少10个文本框做到这一点。
谢谢!
你不应该顺藤摸瓜,重点丢失或其他低级别的构造。 相反,为什么不能简单地用一个InputVerifier按照这个例子和这一个了 ?
例如,它可能是这个样子:
import javax.swing.*;
public class InputVerifierEg {
private JPanel mainPanel = new JPanel();
private JTextField txtJobType = new JTextField(10);
private JTextField txtPriorityCode = new JTextField(10);
public InputVerifierEg() {
txtJobType.setInputVerifier(new MyInputVerifier("jobType", "jobCode",
JobType.class));
txtPriorityCode.setInputVerifier(new MyInputVerifier("priority", "priorityCode",
Priority.class));
mainPanel.add(new JLabel("Job Type:"));
mainPanel.add(txtJobType);
mainPanel.add(Box.createHorizontalStrut(15));
mainPanel.add(new JLabel("Priority Code:"));
mainPanel.add(txtPriorityCode);
}
public JPanel getMainPanel() {
return mainPanel;
}
private static void createAndShowGui() {
JFrame frame = new JFrame("InputVerifierEg");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new InputVerifierEg().getMainPanel());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}
class MyInputVerifier extends InputVerifier {
private String fieldName;
private String codeName;
private Class<?> classType;
public MyInputVerifier(String fieldName, String codeName, Class<?> classType) {
this.fieldName = fieldName;
this.codeName = codeName;
this.classType = classType;
}
@Override
public boolean verify(JComponent input) {
JTextField tField = (JTextField) input;
// assuming that the checkFieldExists is a static method of a utility class
if (!FieldCheckerUtil.checkFieldExists(tField.getText(), fieldName,
codeName, classType)) {
return false;
}
if (tField.getText().trim().isEmpty()) {
return false;
}
return true;
}
@Override
public boolean shouldYieldFocus(JComponent input) {
JTextField tField = (JTextField) input;
if (verify(input)) {
return true;
} else {
tField.selectAll();
// show JOptionPane error message?
return false;
}
}
}
就个人而言,我恨它,当验证这样做,阻止我身边中运动的形式,我认为合适的。 为什么当表单当时提交并强调无效问卷,不会做的所有字段的验证?
也许做一个检查:
txtPriorityCode.getText().isEmpty()
然后在其他测试,如果:
!txtPriorityCode.getText().isEmpty() && txtJobType.getText().isEmpty()
即只有在做第二个检查如果第一个不是空的。