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.
我想从java应用程序调用一个c++程序,打包在一个jar文件中。是否可以从jar文件中打包和调用c++?谢谢
从 Java 调用 C++ 函数,您需要阅读有关JNI的信息。
导出的 C++ 函数将存储在动态库中,例如.dll(Windows) 或.so(Linux) 文件。
.dll
.so
然后尝试将该.dll文件打包到 jar 文件中(阅读此内容)。