gpt4 book ai didi

Java:绑定(bind)windows键

转载 作者:行者123 更新时间:2023-11-30 07:36:35 26 4
gpt4 key购买 nike

我正在尝试使用 Java 绑定(bind) Windows 键,但失败了。我可以将 AltCtrl 键与其他键绑定(bind)。

但是,如果我想使用 Windows 键,我无法获取它。

这可能吗?

最佳答案

它对我有用,我使用了 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();
}
}

关于Java:绑定(bind)windows键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3456300/

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