Java全局按键?

发布于 2024-10-29 02:17:48 字数 168 浏览 1 评论 0原文

对于我的程序,我需要注册在应用程序没有焦点的情况下发生的关键事件。 (即具有焦点的 Internet Explorer)我一直在寻找,人们说你可以使用 jni 来做到这一点;但是,如果没有它,还有什么办法可以做到这一点吗?

有人能给我一个非常好的 jni 示例的链接吗?到目前为止我看过的那些并没有多大帮助

For my program i need to register key events that happen without the application having the focus. (i.e. internet explorer having the focus) I have been looking and people say you can do it with jni; however, is there anyway to do it without it?

Can someone give me a link of a really good jni example? the ones i have looked at so far havent been very helpful

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北风几吹夏 2024-11-05 02:17:48

JIntellitype(这是一个 Apache 2.0 许可证)将在 Windows 中为您执行此操作。 JxGrabKey 似乎是 Linux 的有效解决方案。我不知道跨平台解决方案。 (它们仍然使用 JNI,但它们会为您抽象详细信息)

http://melloware.com /products/jintellitype/index.html

http://sourceforge.net/projects/jxgrabkey/

JIntellitype (which is an Apache 2.0 license) will do this for you in Windows. JxGrabKey appears to be a valid solution for Linux. I'm not aware of a cross-platform solution. (These still use JNI, but they'll abstract the details for you)

http://melloware.com/products/jintellitype/index.html

http://sourceforge.net/projects/jxgrabkey/

挽心 2024-11-05 02:17:48

您想创建键盘记录器吗?不,如果没有 JNI 或使用一些为您包装 JNI 的库,这是不可能的。

在 Java 中,在您自己的框架/Windows 之外执行操作的唯一方法是使用 java.awt.Robot,但这仅允许屏幕截图并将输入发送到其他程序,而不能捕获输入。

Do you want to create a key logger? No, it is not possible without JNI or using some library which wraps the JNI away for you.

The only way in Java to do things outside of your own Frames/Windows is using java.awt.Robot, but this only allows screenshots and sending input to other programs, not capturing input.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文