我只是想学习主要的活页夹是如何工作的,似乎我对Java教程有误解。这是代码:

public class KeyBinder {

    public static void main(String[] args) {

        //making frame and label to update when "g" key is pressed.

        JLabel keybinderTestLabel;

        JFrame mainFrame = new JFrame();
        mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        mainFrame.setSize(300,75);
        mainFrame.setLocationRelativeTo(null);
        mainFrame.setVisible(true);

        keybinderTestLabel = new JLabel("Press the 'g' key to test the key binder.");
        mainFrame.add(keybinderTestLabel);

        Action gPressed = new AbstractAction(){

            @Override
            public void actionPerformed(ActionEvent e) {
                keybinderTestLabel.setText("Key Binding Successful.");
                System.out.println("Key Binding Successful.");
                //Testing to see if the key binding was successful.
            }

        };


        keybinderTestLabel.getInputMap().put(KeyStroke.getKeyStroke("g"), "gPressed");
        keybinderTestLabel.getActionMap().put("gPressed", gPressed);
        /*
         * from my understanding, these two lines map the KeyStroke event of the g key
         * to the action name "gpressed", then map the action name "gpressed" to the action
         * gpressed.
         *
         */
    }

}


据我了解,我将g击键映射到动作名称“ gPressed”,然后将其映射到动作gPressed。但是由于某种原因,当我运行该程序时,按g键不会更新文本标签。这里有什么问题?按键实际上没有映射到键盘上的g键吗?

最佳答案

因此,从JavaDocs


  public final InputMap getInputMap()
  返回使用的InputMap
  当组件具有焦点时。这是方便的方法
  getInputMap(WHEN_FOCUSED)


由于JLabel不可聚焦,因此它将永远无法工作,相反,您需要提供其他聚焦条件,例如...

keybinderTestLabel.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW). //...


而且,这是个人喜好...像这样使用KeyStroke.getKeyStroke("g")KeyStroke.getKeyStroke可能会出现问题,因为您提供的String的含义非常精确,我永远也记不清它应该如何工作(而且它没有过多记录)。

如果第一个建议未能解决问题,请尝试使用KeyStroke.getKeyStroke(KeyEvent.VK_G, 0)代替

10-06 03:01