Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Java 中的 Robot 类在文本字段中键入一些文本。
我遇到的问题是,我无法发现反引号键的整数值(键盘上 1 的左侧)。
我不知道它是 KeyEvent 类中的哪一个 VK_ 常量。
起初我以为它是 96,但使用机器人按下它会给我0(也许 96 是数字键盘的零)。
0
反引号的整数键码是什么?
VK_BACK_QUOTE是你想要的代码。它具有整数值192。
VK_BACK_QUOTE
192
如果微软布局编辑器是正确的, VK_OEM_3 。是否有意义?