其他分享
首页 > 其他分享> > 为什么ActionEvent.getActionCommand()返回null?

为什么ActionEvent.getActionCommand()返回null?

作者:互联网

我对F键(F1,F2等)有问题.我想向F键添加操作,并且希望在一个事件中处理所有操作.这就是为什么我想使用getActionCommand方法,但是它总是返回null的原因.但是,如果我使用数字键盘键,它将按预期工作.谢谢

使用F键的无效代码:
码:

    private void setKeyBindings() {
    AbstractAction numberAction = new AbstractAction() {
        @Override
        public void actionPerformed(ActionEvent ae) {
            System.out.println(ae.getActionCommand());
        }
    };

    InputMap inputMap = this.editButton.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);

    for (int i = 1; i < 13; i++)
    {
        String text = String.valueOf(i);

        inputMap.put(KeyStroke.getKeyStroke("F" + text), text);
        this.editButton.getActionMap().put(text, numberAction);
    }
}

工作小键盘代码:

    private void setKeyBindings() {
    AbstractAction numberAction = new AbstractAction() {
        @Override
        public void actionPerformed(ActionEvent ae) {
            System.out.println(ae.getActionCommand());
        }
    };

    InputMap inputMap = this.editButton.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);

    for (int i = 0; i < 10; i++)
    {
        String text = String.valueOf(i);

        inputMap.put(KeyStroke.getKeyStroke("NUMPAD" + text), text);
        this.editButton.getActionMap().put(text, numberAction);
    }
}

解决方法:

I wanted to use the getActionCommand method, but it always returns null

功能键不会生成字符.

如果您想知道在使用功能键或其他不生成字符的键时按下了哪个键,则需要一点儿幻想:

class SimpleAction extends AbstractAction
{
    public void actionPerformed(ActionEvent e)
    {
        EventQueue queue = Toolkit.getDefaultToolkit().getSystemEventQueue();
        KeyEvent ke = (KeyEvent)queue.getCurrentEvent();
        String keyStroke = ke.getKeyText( ke.getKeyCode() );
        String number = keyStroke.substring(1);
        System.out.println( number );

    }
}

真正的问题是您试图使用功能键执行与仅使用数字键相同的功能.当您只需键入键时,我认为无需使用功能键来模拟键的键入.

标签:swing,key-bindings,java
来源: https://codeday.me/bug/20191027/1947417.html