您好我正在使用我的java文件。 当我按下回车键时,我想在JFormattedTextField上添加一个事件。 这是我的代码
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.text.MaskFormatter;
import java.awt.*;
import java.text.ParseException;
public class Test extends JFrame implements ActionListener
{
JFormattedTextField phoneField;
Test()
{
setTitle("JFormatted Text");
setLayout(null);
MaskFormatter mask = null;
try {
mask = new MaskFormatter("##########");
} catch (ParseException e) {
e.printStackTrace();
}
phoneField = new JFormattedTextField(mask);
phoneField.setBounds(20, 20, 150, 30);
phoneField.addActionListener(this);
setVisible(true);
setSize(200, 200);
getContentPane().add(phoneField);
setDefaultCloseOperation(EXIT_ON_CLOSE);
}
public static void main(String[] args)
{
new Test();
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()== phoneField)
{
System.out.println("The numbers you enter are "+phoneField.getText());
}
}
}
它可以工作,但用户需要输入10位数字。
答案 0 :(得分:3)
在字段中添加ActionListener
。它比使用(低级别)KeyListener
更好,并且将符合操作系统接受的“入境结束”。
答案 1 :(得分:1)
请勿使用KeyListener
代替DocumentListener。
它有以下方法捕获JTextField
JTextField textField = new JTextField();
textField.getDocument().addDocumentListener(new DocumentListener() {
@Override
public void removeUpdate(DocumentEvent arg0) {
// Gives notification that a portion of the document has been removed.
}
@Override
public void insertUpdate(DocumentEvent arg0) {
// Gives notification that there was an insert into the document.
}
@Override
public void changedUpdate(DocumentEvent arg0) {
// Gives notification that an attribute or set of attributes changed.
}
});
答案 2 :(得分:0)
您可以改为添加keyListener。
phonefield.addKeyListener(new KeyAdapter() {
public void keyPressed(KeyEvent evt) {
if(evt.getKeyCode() == evt.VK_ENTER){
System.out.println("The numbers you enter are "+phoneField.getText());
}
}
});
如果这不是你的问题,你应该稍微扩展并澄清。
编辑:
正如评论和其他答案所指出的那样,你应该选择ActionListener
。推理可以在下面找到。