我正在开发一个Sudoku applet,我想制作它的单元格(扩展JTextField),这样它只接受0-9和1之间的整数。后来我会限制它更多(所以它符合游戏规则)。我开始时:
public Block(int[] blockNum){
this.setLayout(new GridLayout(3,3));
this.setBorder(new LineBorder(Color.BLACK,2));
for(int i=0; i<CELL_COUNT; i++){
cells[i] = new Cell(); // Cell extends JTextField
((AbstractDocument)cells[i].getDocument()).setDocumentFilter(
new MyDocumentFilter()); // <- this is relevant for this question
if(blockNum[i]!=0){
cells[i].setNumber(blockNum[i]);
cells[i].setEditable(false);
}
this.add(cells[i]);
}
}
}
这里我试图过滤输入,为了开始我只是试图将它限制为整数和一位数,但似乎我可以输入尽可能多的数字,但不会触发最后一行。
在这里想要一些帮助,谢谢你:
class MyDocumentFilter extends DocumentFilter
{
@Override
public void replace(DocumentFilter.FilterBypass fp, int offset
, int length, String string, AttributeSet aset)
throws BadLocationException
{
int len = string.length();
boolean isValidInteger = true;
if (len>1 || !Character.isDigit(string.charAt(0))) isValidInteger = false;
if (isValidInteger)
super.replace(fp, offset, length, string, aset);
else
Toolkit.getDefaultToolkit().beep();
}
}
答案 0 :(得分:0)
尝试使用DocumentFilter类。这将允许您在实际显示之前检查输入。您还可以编辑下面的内容以仅检查整数。
JTextField tf = new JTextField();
AbstractDocument d = (AbstractDocument) tf.getDocument();
d.setDocumentFilter(new DocumentFilter(){
int max = 1;
@Override
public void replace(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) throws BadLocationException {
int documentLength = fb.getDocument().getLength();
if (documentLength - length + text.length() <= max)
super.replace(fb, offset, length, text.toUpperCase(), attrs);
}
});