我希望我的jtextfield只接受0和下面代码示例中指定的MAX
值之间的数值。
假设MAX
变量设置为8,如下所示。然后我只想让它可以输入0到8之间的数值。在我下面的代码示例中,您可以键入88,77,66等,这是不可能的。我不知道如何制作它所以它只接受0和MAX
之间的值。
import javax.swing.*;
import javax.swing.text.*;
public class DocumentDemo extends JFrame {
public static void main(String[] args) {
new DocumentDemo();
}
final int MAX = 8;
public DocumentDemo() {
this.setVisible(true);
JTextField textField = new JTextField();
((AbstractDocument)textField.getDocument()).setDocumentFilter(
new DocumentFilter() {
@Override
public void replace(FilterBypass fb, int offset, int length, String text, AttributeSet attrs) throws BadLocationException {
int len = text.length();
boolean isValidValue = true;
for(int i = 0; i < len; i++) {
if(!Character.isDigit(text.charAt(i))){
isValidValue = false;
}
}
if(isValidValue && Integer.parseInt(text) > MAX) {
isValidValue = false;
}
if(isValidValue && fb.getDocument().getText(0, fb.getDocument().getLength()).length() > String.valueOf(MAX).length()) {
isValidValue = false;
}
if(isValidValue) {
super.replace(fb, offset, length, text, attrs);
}
}
}
);
textField.setColumns(5);
this.add(textField);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.pack();
}
}
答案 0 :(得分:5)
JFormattedTextField听起来像你想要的。
NumberFormatter nf = new NumberFormatter();
nf.setMinimum(new Integer(0));
nf.setMaximum(new Integer(8));
JFormattedTextField field = new JFormattedTextField(nf);
编辑:显示如何设置min,max
答案 1 :(得分:3)
您还可以使用JSpinner
或DocumentFilter
(with examples),具体取决于您的整体需求
DocumentFilter
将为您提供额外的好处,即能够实时过滤进入该字段的内容