设置 JNotify
Setting up JNotify
我已将 jnotify.jar file
附加到我引用的库中(在 eclipse 中)。
显示错误:
The libraries cannot be found in "D:/Java/jre/bin"
我将 jnotify.dll
文件复制到该位置,现在仅在我的项目目录中跟踪文件更改,而不会在我系统的任何其他位置跟踪。
如何设置它以便可以从任何其他目录跟踪文件更改?
String path = "C:/Users/ansuj/Desktop/testdir"; //does not fix the issue
从 Java 垃圾箱中删除 dll。最好的做法是把它放在你的罐子旁边并使用
java -jar -Djava.library.path=. something.jar
在 Eclipse 中你可以添加-Djava.library.path=。到 运行 对话框屏幕中的 JVM 参数部分。
我已将 jnotify.jar file
附加到我引用的库中(在 eclipse 中)。
显示错误:
The libraries cannot be found in "D:/Java/jre/bin"
我将 jnotify.dll
文件复制到该位置,现在仅在我的项目目录中跟踪文件更改,而不会在我系统的任何其他位置跟踪。
如何设置它以便可以从任何其他目录跟踪文件更改?
String path = "C:/Users/ansuj/Desktop/testdir"; //does not fix the issue
从 Java 垃圾箱中删除 dll。最好的做法是把它放在你的罐子旁边并使用
java -jar -Djava.library.path=. something.jar
在 Eclipse 中你可以添加-Djava.library.path=。到 运行 对话框屏幕中的 JVM 参数部分。