Java 适用于'&燃气轮机';在爪哇?

Java 适用于'&燃气轮机';在爪哇?,java,Java,在一个项目中,我被告知要特别区分和,和之间的按键。我看到了一个名为KeyEvent.VK_GREATER和KeyEvent.VK_LESS的KeyEvent,但是当我通过打印字符串来测试它时,什么都没有发生 请帮助:( 确保它适用于 那些钥匙回来了 Key id: 401; Key char: <; key code: 44; Modifiers ex: 64 Key id: 401; Key char: >; key code: 46; Modifiers ex: 64 密钥绑

在一个项目中,我被告知要特别区分
之间的按键。我看到了一个名为
KeyEvent.VK_GREATER
KeyEvent.VK_LESS
的KeyEvent,但是当我通过打印字符串来测试它时,什么都没有发生

请帮助:(

确保它适用于

那些钥匙回来了

Key id: 401; Key char: <; key code: 44; Modifiers ex: 64
Key id: 401; Key char: >; key code: 46; Modifiers ex: 64

密钥绑定程序的版本:

import java.awt.Color;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;

import javax.swing.AbstractAction;
import javax.swing.ActionMap;
import javax.swing.BorderFactory;
import javax.swing.InputMap;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.KeyStroke;
import javax.swing.SwingUtilities;

@SuppressWarnings("serial")
public class KeyBindingTest extends JPanel {
    public static void main(String[] args) {
        SwingUtilities.invokeLater(() -> {
            JFrame frame = new JFrame("Foo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(new KeyBindingTest());
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
        });
    }

    public KeyBindingTest() {
        setPreferredSize(new Dimension(400, 300));

        KeyStroke lessThanKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_COMMA, KeyEvent.SHIFT_DOWN_MASK);
        KeyStroke greaterThanKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_PERIOD, KeyEvent.SHIFT_DOWN_MASK);

        int condition = WHEN_IN_FOCUSED_WINDOW;
        InputMap inputMap = getInputMap(condition);
        ActionMap actionMap = getActionMap();

        borderFlash(lessThanKeyStroke, inputMap, actionMap, Color.BLUE);
        borderFlash(greaterThanKeyStroke, inputMap, actionMap, Color.RED);
    }

    private void borderFlash(KeyStroke ks, InputMap inputMap, ActionMap actionMap, Color color) {
        KeyStroke press = KeyStroke.getKeyStroke(ks.getKeyCode(), ks.getModifiers(), false);
        KeyStroke release = KeyStroke.getKeyStroke(ks.getKeyCode(), ks.getModifiers(), true);

        inputMap.put(press, press.toString());
        inputMap.put(release, release.toString());

        actionMap.put(press.toString(), new BorderFlashAction(color, false));
        actionMap.put(release.toString(), new BorderFlashAction(color, true));
    }

    private class BorderFlashAction extends AbstractAction {
        private static final int THICKNESS = 20;
        private Color color;
        private boolean release;

        public BorderFlashAction(Color color, boolean release) {
            this.color = color;
            this.release = release;
        }

        @Override
        public void actionPerformed(ActionEvent e) {
            if (release) {
                setBorder(null);
            } else {
                setBorder(BorderFactory.createLineBorder(color, THICKNESS));
            }
        }
    }
}
确保它适用于

那些钥匙回来了

Key id: 401; Key char: <; key code: 44; Modifiers ex: 64
Key id: 401; Key char: >; key code: 46; Modifiers ex: 64

密钥绑定程序的版本:

import java.awt.Color;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;

import javax.swing.AbstractAction;
import javax.swing.ActionMap;
import javax.swing.BorderFactory;
import javax.swing.InputMap;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.KeyStroke;
import javax.swing.SwingUtilities;

@SuppressWarnings("serial")
public class KeyBindingTest extends JPanel {
    public static void main(String[] args) {
        SwingUtilities.invokeLater(() -> {
            JFrame frame = new JFrame("Foo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(new KeyBindingTest());
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
        });
    }

    public KeyBindingTest() {
        setPreferredSize(new Dimension(400, 300));

        KeyStroke lessThanKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_COMMA, KeyEvent.SHIFT_DOWN_MASK);
        KeyStroke greaterThanKeyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_PERIOD, KeyEvent.SHIFT_DOWN_MASK);

        int condition = WHEN_IN_FOCUSED_WINDOW;
        InputMap inputMap = getInputMap(condition);
        ActionMap actionMap = getActionMap();

        borderFlash(lessThanKeyStroke, inputMap, actionMap, Color.BLUE);
        borderFlash(greaterThanKeyStroke, inputMap, actionMap, Color.RED);
    }

    private void borderFlash(KeyStroke ks, InputMap inputMap, ActionMap actionMap, Color color) {
        KeyStroke press = KeyStroke.getKeyStroke(ks.getKeyCode(), ks.getModifiers(), false);
        KeyStroke release = KeyStroke.getKeyStroke(ks.getKeyCode(), ks.getModifiers(), true);

        inputMap.put(press, press.toString());
        inputMap.put(release, release.toString());

        actionMap.put(press.toString(), new BorderFlashAction(color, false));
        actionMap.put(release.toString(), new BorderFlashAction(color, true));
    }

    private class BorderFlashAction extends AbstractAction {
        private static final int THICKNESS = 20;
        private Color color;
        private boolean release;

        public BorderFlashAction(Color color, boolean release) {
            this.color = color;
            this.release = release;
        }

        @Override
        public void actionPerformed(ActionEvent e) {
            if (release) {
                setBorder(null);
            } else {
                setBorder(BorderFactory.createLineBorder(color, THICKNESS));
            }
        }
    }
}

对于一些简单的事情,可以使用KeyEvent#getKeyChar()方法,如下所示:

if (e.isShiftDown()) {
    switch (e.getKeyChar()) {
        case 'Q':
            System.out.println("EXITING!");
            System.exit(0);
            break;
        case '<':
            System.out.println("I'm Left");
            break;
    }
}
if(如IsShift down()){
开关(如getKeyChar()){
案例‘Q’:
System.out.println(“退出!”);
系统出口(0);
打破

案例“对于一些简单的事情,可以使用KeyEvent#getKeyChar()方法,如下所示:

if (e.isShiftDown()) {
    switch (e.getKeyChar()) {
        case 'Q':
            System.out.println("EXITING!");
            System.exit(0);
            break;
        case '<':
            System.out.println("I'm Left");
            break;
    }
}
if(如IsShift down()){
开关(如getKeyChar()){
案例‘Q’:
System.out.println(“退出!”);
系统出口(0);
打破

案例'考虑发布您的测试编解码器已更新-来自Oracle的java教程。我不明白我的密钥侦听器可以处理从a到z的其他密钥事件以及所有这些。它不适用于<和>,请为您的代码制作一个MRE。这是一个最小的可复制示例。换句话说,可以复制的代码同样多这个问题,在整个过程中我们可以自己编译和运行。考虑到你的测试代码已经更新了——从甲骨文的java教程。我不明白我的主要侦听器与A到Z的其他关键事件一起工作。这对<和>不起作用。请为你的代码做一个MRE。这是一个最小的可重复的EXA。换句话说,就像你的代码一样,可以完整地再现问题,这样我们就可以自己编译和运行它。@DawoodibnKareem:正是使用shift键修饰符pressed@DawoodibnKareem:在按住shift键修改器的情况下