我知道如何设置一个jformattedtextfield以允许用户只写数字,字母......但我希望用户只能写两个值:1或0。 我怎么能这样做。我写了这个:
MaskFormatter mf6;
try {
mf6 = new MaskFormatter("#");
txtformatted = new javax.swing.JFormattedTextField(mf6);
} catch (ParseException e) {
//e.printStackTrace();
}
答案 0 :(得分:1)
我希望用户只能写两个值:1或0。
查看setValidCharacters(...)
类的MaskFormatter
方法。