一旦输入了一定数量的字符,我可以使用什么侦听器来使函数发生JTextField
?
JTextField txtF=new JTextField();
char[] txtIn=txtF.getText().toCharArray();
if(txtIn.length()==5){
//perform action here
}
我试过keyPressed
了,但它要我按回车键检查字符长度。
一旦输入了一定数量的字符,我可以使用什么侦听器来使函数发生JTextField
?
JTextField txtF=new JTextField();
char[] txtIn=txtF.getText().toCharArray();
if(txtIn.length()==5){
//perform action here
}
我试过keyPressed
了,但它要我按回车键检查字符长度。