我需要通过允许用户根据这种格式12345-1234567-1仅输入cnic编号来验证JTextField,我正在使用这个正则表达式,但它不起作用。 这是我的功能
private void idSearchKeyPressed(java.awt.event.KeyEvent evt) {
String cnicValidator = idSearch.getText();
if (cnicValidator.matches("^[0-9+]{5}-[0-9+]{7}-[0-9]{1}$")) {
idSearch.setEditable(true);
}
else {
idSearch.setEditable(false);
}
}
请给我一些指导如何验证我的jtextfield ...谢谢
答案 0 :(得分:2)
验证后期输入的另一种解决方案是使用JFormattedTextField
与MaskFormatter
相结合来限制输入开始。
创建其中一个的代码将是:
import java.text.ParseException;
import javax.swing.JFormattedTextField;
import javax.swing.JFrame;
import javax.swing.text.MaskFormatter;
public class Demo {
public static void main(String[] args){
final JFrame frame = new JFrame("Demo");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
final MaskFormatter mask;
try {
mask = new MaskFormatter("#####-#######-#");
} catch (ParseException e) {
throw new RuntimeException("Invalid format mask specified", e);
}
// You can optionally set a placeholder character by doing the following:
mask.setPlaceholderCharacter('_');
final JFormattedTextField formattedField = new JFormattedTextField(mask);
frame.setSize(100, 100);
frame.add(formattedField);
frame.setVisible(true);
}
}
格式掩码#
只接受数字(具体来说,它接受Character.isDigit(char)
返回true
的任何字符),并禁止输入任何非数字。