简体   繁体   English

按下 Enter 键时调用一系列操作

[英]Invoke a serie of actions when Enter key is pressed

I have one Swing project and I have an action listener on JTextField for Tab key as follows.我有一个Swing项目,我在JTextField上有一个用于Tab键的动作侦听器,如下所示。

There is a JOptionPane.showMessageDialog() inside the action listener.动作侦听器中有一个JOptionPane.showMessageDialog() And when Tab is pressed option pane will show an Information message.当按下Tab键时,选项窗格将显示一条信息消息。

My problem is that, when I press Enter on OK button of Information Message dialog, a serie of action is invoked viz Tab action of JTextField and Enter action of btnNewButton .我的问题是,当我在 Information Message 对话框的 OK 按钮上按Enter时,调用了一系列操作,即JTextFieldTab操作和btnNewButtonEnter操作。

If I use mouse click on OK button of Error Message dialog, every thing is fine and no problem.如果我用鼠标单击错误消息对话框的确定按钮,一切都很好,没有问题。

Can I solve this using key bindings instead of key listener?我可以使用键绑定而不是键侦听器来解决这个问题吗?

Please suggest a solution请提出解决方案

import java.awt.EventQueue;
import java.awt.KeyboardFocusManager;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.util.Collections;

import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.border.EmptyBorder;

public class Test extends JFrame {
    private JPanel contentPane;
    private JTextField textField;
    private JButton btnNewButton;
    private JDialog dialog;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    Test frame = new Test();
                    frame.setVisible(true);
                }
                catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    public Test() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setBounds(100, 100, 450, 300);
        contentPane = new JPanel();
        contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
        setContentPane(contentPane);
        setLocationRelativeTo(null);
        contentPane.setLayout(null);

        textField = new JTextField();
        textField.setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
                Collections.emptySet());
        textField.addKeyListener(new java.awt.event.KeyAdapter() {
            public void keyPressed(java.awt.event.KeyEvent evt) {
                if (evt.getKeyCode() == KeyEvent.VK_TAB) {
                    JOptionPane.showMessageDialog(dialog, " Please Press ENTER Key", "information",
                            JOptionPane.INFORMATION_MESSAGE);

                    btnNewButton.grabFocus();
                }
            }
        });
        textField.setBounds(73, 28, 178, 28);
        contentPane.add(textField);
        textField.setColumns(10);

        btnNewButton = new JButton("New button");
        btnNewButton.addKeyListener(new KeyAdapter() {
            @Override
            public void keyReleased(KeyEvent e) {
                if (e.getKeyCode() == KeyEvent.VK_ENTER) {
                    JOptionPane.showMessageDialog(dialog, " That Invoked New Button Also", "Error",
                            JOptionPane.ERROR_MESSAGE);
                }
            }
        });
        btnNewButton.setBounds(223, 137, 117, 25);
        contentPane.add(btnNewButton);

        JLabel lblNewLabel = new JLabel("Please Press TAB Key");
        lblNewLabel.setBounds(83, 55, 183, 15);
        contentPane.add(lblNewLabel);

        dialog = new JDialog();
        dialog.setAlwaysOnTop(true);
    }
}

The problem is that you are overriding method keyReleased() .问题是您正在覆盖方法keyReleased() The JOptionPane is closing before the keyReleased() method is called and since you make btnNewButton the focused component after the JOptionPane is closed, the keyReleased() method is invoked – which displays the other JOptionPane . JOptionPane在调用keyReleased()方法之前关闭,并且由于您在关闭JOptionPane之后使btnNewButton成为焦点组件,因此将调用keyReleased()方法——这会显示另一个JOptionPane

Simply rename the method to keyPressed() .只需将该方法重命名为keyPressed()即可。

Also, you don't need the dialog member.此外,您不需要dialog成员。 The first parameter to JOptionPane#showMessageDialog should be the JFrame . JOptionPane#showMessageDialog的第一个参数应该是JFrame

Here is your code with my corrections.这是您的代码和我的更正。

import java.awt.EventQueue;
import java.awt.KeyboardFocusManager;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.util.Collections;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.border.EmptyBorder;

public class Test extends JFrame {
    private JPanel contentPane;
    private JTextField textField;
    private JButton btnNewButton;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    Test frame = new Test();
                    frame.setVisible(true);
                }
                catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    public Test() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setBounds(100, 100, 450, 300);
        contentPane = new JPanel();
        contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
        setContentPane(contentPane);
        setLocationRelativeTo(null);
        contentPane.setLayout(null);

        textField = new JTextField();
        textField.setFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS,
                Collections.emptySet());
        textField.addKeyListener(new java.awt.event.KeyAdapter() {
            public void keyPressed(java.awt.event.KeyEvent evt) {
                if (evt.getKeyCode() == KeyEvent.VK_TAB) {
                    JOptionPane.showMessageDialog(Test.this, " Please Press ENTER Key", "information",
                            JOptionPane.INFORMATION_MESSAGE);
                    btnNewButton.grabFocus();
                }
            }
        });
        textField.setBounds(73, 28, 178, 28);
        contentPane.add(textField);
        textField.setColumns(10);

        btnNewButton = new JButton("New button");
        btnNewButton.addKeyListener(new KeyAdapter() {
            @Override
            public void keyPressed(KeyEvent e) {
                if (e.getKeyCode() == KeyEvent.VK_ENTER) {
                    JOptionPane.showMessageDialog(Test.this, " That Invoked New Button Also", "Error",
                            JOptionPane.ERROR_MESSAGE);
                }
            }
        });
        btnNewButton.setBounds(223, 137, 117, 25);
        contentPane.add(btnNewButton);

        JLabel lblNewLabel = new JLabel("Please Press TAB Key");
        lblNewLabel.setBounds(83, 55, 183, 15);
        contentPane.add(lblNewLabel);
    }
}

Note that (at least in JDK 15) there is no need to explicitly set the default close operation for JFrame since the default is EXIT_ON_CLOSE请注意(至少在 JDK 15 中)无需显式设置JFrame的默认关闭操作,因为默认值为EXIT_ON_CLOSE

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM