Java 组合键
我想在程序运行时只要按下某个组合键即可执行特定操作,即使窗口未处于焦点状态也是如此。例如,如果我按 CTRL-U,程序就会退出。这可能吗?
I want to perform a specific action anytime a certain key combination is pressed while the program is running even if the window is not in focus. For instance, if I press CTRL-U the program would exit. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为此,您唯一真正的选择是使用大量 JNI。然而,这可能相当麻烦且难以实现。我的建议是要么直接使用 C/C++,要么不要尝试这样做。
Your only real option for this is a lot of JNI. However, this can be quite cumbersome and hard to achieve. My advice is to either go straight C/C++ or not attempt this.
简单地说,唯一可以做到的方法就是使用 JNI。
Simply put, the only way it can be done is with JNI.