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.
我的项目依赖于一个 jar,它又加载了一个外部 dll:
static { System.loadLibrary("jpcap"); }
该 dll 与创建 jar(使用 Ant 构建)的项目一起提供。但是,它不会复制到复制主项目输出的输出类文件夹中。因此我在运行时收到错误:
java.library.path 中没有 jpcap
如何设置我的项目,以便将 dll 复制到我的主项目的类文件夹中?
非常感谢,大卫