0

ユーザーがキーボードをロックして、ユーザーが数値を入力できないようにするにはどうすればよい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 に答える