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.
我正在使用本机库 (OpenCV),为此我有 .jar 和 .dll。当我运行本地 Java 项目时,我只需将 .jar 从 Eclipse 添加到构建路径,并设置本机库路径。然后我加载它
System.load(absolutePath);
但是,在我尝试在 Glassfish 上部署的 WebService 中,出现“本机库已加载到另一个类加载器中”错误。在 Glassfish 项目中包含 .jar 和 .dll 的正确过程到底是什么?