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.
我已将其附加jnotify.jar file在我引用的库中(在 Eclipse 中)。
jnotify.jar file
出现一个错误说:
在“D:/Java/jre/bin”中找不到这些库
我将文件复制jnotify.dll到该位置,现在文件更改仅在我的项目目录中被跟踪,而不是在我系统上的任何其他地方。如何设置它以便可以从任何其他目录跟踪文件更改?
jnotify.dll
String path = "C:/Users/ansuj/Desktop/testdir"; //does not fix the issue
从您的 Java bin 中删除 dll。最好的做法是把它放在你的罐子旁边并使用
java -jar -Djava.library.path=. something.jar
在 Eclipse 中,您可以添加 -Djava.library.path=。到运行对话框屏幕中的 JVM 参数部分。