当JTextField“填充”到某个字符限制时执行功能

时间:2013-09-01 23:33:49

标签: java swing jtextfield

一旦在JTextField中输入了一定数量的字符,我可以使用什么样的监听器才能发挥作用?

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

我试过了keyPressed,但是我要按Enter键检查字符长度。

1 个答案:

答案 0 :(得分:3)

DocumentListener可能是最全面的方式。