0

一旦输入了一定数量的字符,我可以使用什么侦听器来使函数发生JTextField

JTextField txtF=new JTextField();
char[] txtIn=txtF.getText().toCharArray();
if(txtIn.length()==5){
//perform action here
}

我试过keyPressed了,但它要我按回车键检查字符长度。

4

1 回答 1

3

DocumentListener可能是最全面的方式。

于 2013-09-01T23:36:17.627 回答