我正在尝试使用Java绑定 Windows 键,但我失败了。 我可以用其他东西绑定 Alt 或 Ctrl 键。
但是,如果我想使用 Windows 键,我就无法得到它。
有可能吗?
答案 0 :(得分:3)
它对我有用,我使用了来自KeyEvent类的常量。
/**
* Constant for the Microsoft Windows "Windows" key.
* It is used for both the left and right version of the key.
* @see #getKeyLocation()
* @since 1.5
*/
public static final int VK_WINDOWS = 0x020C;
我以下面的方式实现我的KeyListener方法并且它有效(我使用的是ubuntu 10):
// Invoked when a key has been pressed.
public void keyPressed(KeyEvent e) {
// Returns the integer code for the key on the keyboard and if
// keyCode is equal to VK_WINDOWS)...
if (e.getKeyCode() == KeyEvent.VK_WINDOWS) {
// ...call the doIT method.
doIT();
}
}
答案 1 :(得分:1)
在Linux上,Windows键通常映射到元键,因此请尝试Event.META_MASK
。