0

如何为用户锁定键盘,使用户无法在 a 中输入任何数值JTextField

4

2 回答 2

2
javax.swing.InputVerifier

适用于大多数简单的任务。

这是我前几天敲掉的一个:

public class TexFieldValidator extends InputVerifier {

   String regex;
   String errorMsg;
   JDialog popup;

   public TexFieldValidator(String regex, String errorMsg) {
      this.regex = regex;
      this.errorMsg = errorMsg;
   }

   @Override
   public boolean verify(JComponent input) {
      boolean verified = false;
      String text = ((JTextField) input).getText();
      if (text.matches(regex)) {
         input.setBackground(Color.WHITE);
         if (popup != null) {
            popup.dispose();
            popup = null;
         }
         verified = true;
      } else {
         if (popup == null) {
            popup = new JDialog((Window) input.getTopLevelAncestor());
            input.setBackground(Color.PINK);
            popup.setSize(0, 0);
            popup.setLocationRelativeTo(input);
            Point point = popup.getLocation();
            Dimension dim = input.getSize();
            popup.setLocation(point.x - (int) dim.getWidth() / 2, point.y + (int) dim.getHeight() / 2);
            popup.getContentPane().add(new JLabel(errorMsg));
            popup.setUndecorated(true);
            popup.setFocusableWindowState(false);
            popup.getContentPane().setBackground(Color.PINK);
            popup.pack();
         }
         popup.setVisible(true);
      }

      return verified;
   }
}

从这里偷来的。

使用示例:

iDTextField.setInputVerifier(new TexFieldValidator("[a-zA-Z0-9]{3}", "ID must be 3 alphanumerics."));
于 2012-09-05T16:30:28.287 回答
1

您可以为此目的使用DocumentFilter或JFormattedTextField

于 2012-09-05T16:21:52.007 回答