2

I'm trying to use JNI, and I'm using the maven-nar-plugin to package up the C++ code into a NAR. Now, I want to include this code in another Java project. How do I go about doing this properly?

4

1 回答 1

0

这取决于您希望如何使用 maven nar 插件创建的依赖项。从文档中,

其他 maven 项目可以使用标准的 maven 依赖声明来指定对这些 nar 文件的依赖。Nar 文件被下载、解包并安装在本地 maven 存储库中,就像 jar 文件一样(除了解包)。

常见问题解答中有一节介绍如何从 java 代码加载本机库。

希望这些帮助。

于 2011-03-31T04:42:33.047 回答