为什么我必须按Enter TWICE为此JFormattedTextField激活JDialog的默认按钮?

时间:2010-09-16 11:08:35

标签: java swing jformattedtextfield

在下面的代码示例中,如果用户更改了JFormattedTextField的内容然后按Enter键,则该对话框应该就像按下“确定”按钮一样。但这需要两次按Enter键才能实现。

普通的香草JTextField总是按照我的预期运作 - 更改文本然后按Enter激活立即激活OK按钮。

在Mac OS X 10.6上使用当前的Mac Java更新1.6.0_20。

这是一种解决方法吗?这是Mac特有的问题吗?

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.text.NumberFormat;
import java.text.ParseException;

public class ScratchSpace {


    public static void main(final String[] args) throws ParseException {
        final JDialog dialog = new JDialog((Frame) null, "Test", true);
        dialog.setLayout(new FlowLayout());

        dialog.add(new JLabel("text field: "));
        dialog.add(new JTextField(20));

        dialog.add(new JLabel("formatted text field: "));
        final JFormattedTextField formattedTextField = new JFormattedTextField(NumberFormat.getIntegerInstance());
        formattedTextField.setValue(42);
        formattedTextField.setColumns(20);
        dialog.add(formattedTextField);

        final JButton okButton = new JButton(new AbstractAction("OK") {
            public void actionPerformed(ActionEvent e) {
                dialog.dispose();
            }
        });

        dialog.add(okButton);
        dialog.getRootPane().setDefaultButton(okButton);
        dialog.pack();
        dialog.setLocationRelativeTo(null);
        dialog.setVisible(true);
    }

}

2 个答案:

答案 0 :(得分:1)

添加此代码解决了问题,

formattedTextField.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent arg0) {
        dialog.dispose();
    }
});

答案 1 :(得分:0)

这并没有解决我的问题。但是,似乎问题解决方案对我来说简单得多:

        private void jTextField1ActionPerformed(java.awt.event.ActionEvent evt) {
   add(jTextField1);          //this reacts after the "ENTER" gets pressed
   jButton1.doClick();        //this activates the button
   jTextField1.setText("");   //this removes the text from a text-field
  jTextField1.grabFocus();    //this sets a cursor within a text-field
    }