gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:08:02 25 4
gpt4 key购买 nike

我的 F 键(F1、F2 等)有问题。我想给 F 键添加 Action ,我想在一个事件中处理所有这些。这就是为什么我想使用 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 );

}
}

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

关于java - 为什么 ActionEvent.getActionCommand() 返回 null?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32978936/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com