2

我有两个关于字符和数值限制的问题。我正在听焦点丢失事件并验证名称(字符)和联系人(数字)文本字段。

1.如何限制数字数据少于 3 位,不允许超过 13 位。

以下是我的数字联系人 TextField 的编码:

private void txt_contactFocusLost(java.awt.event.FocusEvent evt) {
    if (txt_contact.getText().equals("")) {
    } else {
        String contact = txt_contact.getText();
        Pattern pt6 = Pattern
                .compile("^[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]+$");
        Matcher mh6 = pt6.matcher(contact);
        boolean matchFound6 = mh6.matches();
        if (!(matchFound6)) {
            JOptionPane.showMessageDialog(null,
                    "* Enter the Numaric Values only *");
            txt_contact.setText("");
            txt_contact.requestFocus();
        }
    }
}

2.如何限制字符数据少于 3 个字符,不允许超过 30 个字符。

private void txt_nameFocusLost(java.awt.event.FocusEvent evt) {
    if (txt_name.getText().equals("")) {
        error2.setText("Enter Full Name");
        txt_name.setText("");
    } else {
        String name = txt_name.getText();
        Pattern pt1 = Pattern.compile("^[a-zA-Z]+([\\s][a-zA-Z]+)*$");
        Matcher mh1 = pt1.matcher(name);
        boolean matchFound1 = mh1.matches();
        if (!(matchFound1)) {
            JOptionPane.showMessageDialog(null,
                    "* Enter the Character Values only *");
            txt_name.setText("");
            txt_name.requestFocus();
        } else {
            error2.setText("");
        }
    }
}
4

4 回答 4

2

你可以做一些更简单的事情:

NumberFormat numF = NumberFormat.getNumberInstance(); 
numF.setMaximumIntegerDigits(13);
numF.setMinimumIntegerDigits(3);
JFormattedTextField THE_FIELD = new JFormattedTextField(numF);

字符的相同想法)

现在,只允许使用具有指定长度范围的数字

阅读有关它的更多信息:NumberFormatJFormattedTextField

于 2013-02-13T15:46:25.330 回答
1

在模式中,您可以使用语句{n,m} n- to m- times

为此,您可以像这样构建您的模式

用于您的字符比较

Pattern pt6=Pattern.compile("[a-zA-Z]{3,30}"); // it says, it should be 3-30 non Digits

对于数字

Pattern pt6=Pattern.compile("\\d{3,13}"); // it says, it should be 3-13 Digits
于 2013-02-13T15:44:32.443 回答
0

对于字符串

public boolean validateString(String data){
        char [] chars = data.toCharArray();
        if(chars.length < 3 || chars.length >13)
            return false;
        return true;
}

对于号码

public boolean validateNumber(int number){
        String data = number+"";
        return validateString(data);    
}
于 2013-02-13T15:42:36.297 回答
0

我正在使用这个。非常简单和容易使用您需要的方法,或者两者都调用,然后在您需要的地方调用您的 JTextField 作为参数完成...

public static void setNumericOnly(JTextField jTextField){
    jTextField.addKeyListener(new KeyAdapter() {
         public void keyTyped(KeyEvent e) {
           char c = e.getKeyChar();
           if ((!Character.isDigit(c) ||
              (c == KeyEvent.VK_BACK_SPACE) ||
              (c == KeyEvent.VK_DELETE))) {
                e.consume();
              }
         }
    });
}

public static void setCharacterOnly(JTextField jTextField){
    jTextField.addKeyListener(new KeyAdapter() {
         public void keyTyped(KeyEvent e) {
           char c = e.getKeyChar();
           if ((Character.isDigit(c) ||
              (c == KeyEvent.VK_BACK_SPACE) ||
              (c == KeyEvent.VK_DELETE))) {
                e.consume();
              }
         }
    });
}
于 2015-11-19T05:06:07.670 回答