我正在尝试使用JNativeHook库为我的Java应用程序提供全局键盘和鼠标侦听器。我从here下载了源文件,但我不确定如何将其安装到eclipse并使用它。我也查看了Compiling Instructions。我遵循了所有步骤,但似乎让我感到困惑。
有人可以指导我如何使用JNativeHook库吗?我使用Eclipse作为IDE,使用Windows 7作为操作系统。
答案 0 :(得分:8)
按照以下步骤在Eclipse中安装JNativeHook:
JNativeHook/jar
文件夹中获取 JNativeHook.jar 。Right click on project > properties > Java Build Path > Libraries > Add JARs
如果您想在本地安装maven,也可以继续使用these instruction。
答案 1 :(得分:0)
maven
dependencies are provided,所以只需将以下依赖项添加到您的pom.xml
:
<dependency>
<groupId>com.1stleg</groupId>
<artifactId>jnativehook</artifactId>
<version>LATEST</version>
</dependency>