标签: java swing jtextfield
一旦在JTextField中输入了一定数量的字符,我可以使用什么样的监听器才能发挥作用?
JTextField
JTextField txtF=new JTextField(); char[] txtIn=txtF.getText().toCharArray(); if(txtIn.length()==5){ //perform action here }
我试过了keyPressed,但是我要按Enter键检查字符长度。
keyPressed
答案 0 :(得分:3)
DocumentListener可能是最全面的方式。