如何调用 C++来自爪哇?
我想从 Java 调用 C++ 方法。我读到了有关 JNI 的内容,但我不知道如何获取所有库文件以及应该将其保存在哪里以便从命令行运行程序。
有没有办法从 Eclipse 本身调用 C++ 方法,因为我用它来运行 Java 类。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想从 Java 调用 C++ 方法。我读到了有关 JNI 的内容,但我不知道如何获取所有库文件以及应该将其保存在哪里以便从命令行运行程序。
有没有办法从 Eclipse 本身调用 C++ 方法,因为我用它来运行 Java 类。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(8)
虽然我过去使用过 JNI-C++ 桥接(虽然只使用了一点),但它可能有点难看。您可能需要考虑使用 SWIG 来帮助您生成所有混乱的样板代码。
While I've used JNI-C++ bridging in the past (only a little though) - it can be a bit ugly. You might want to consider using SWIG to help you generate all the messy boiler plate code.
如果JNI太复杂你可以看一下 JNA。在第一种情况下,您必须创建本机包装器代码(使用 C 或 C++)来连接 Java 和本机 (C++/C/...) 代码。在第二种情况下,它是在运行时完成的(因此您只需要 Java 代码 + 配置)。
If JNI is too complicated you can take a look at JNA. In first case you have to create native wrapper code (in C or C++) to join Java and native (C++/C/...) code. In second case it is done at runtime (so you only need Java code + config).
我使用 JNR/FFI https://github.com/jnr/jnr-ffi 我有发现比 JNA 更快并且比 SWIG 更容易。我发现它的速度与 JNI 非常接近,但更不容易出错。
I use JNR/FFI https://github.com/jnr/jnr-ffi which I have found to be faster than JNA and easier than SWIG. It's as close to JNI for speed I have found but less error prone.
我以前用过JNA来做简单的接口,它足够简单和优雅。不过,建议如果有复杂的接口,那么最好使用 SWIG。
有一些很好的答案将 SWIG 与 JNI 和 JNA 进行了比较。虽然这个问题被问到已经有一段时间了。
SWIG 与 JNI 和 JNA
I have used JNA before for simple interfaces and it was simple and elegant enough. It is advised though, that if there is a complex interface then it's better to use SWIG.
There are some good answers that compare SWIG with JNI and JNA. It's a while since the question was asked though.
SWIG vs JNI and JNA
JavaCPP - https://github.com/bytedeco/javacpp
它提供了对 Java 内部本机 C++ 的高效访问。在底层,它使用 JNI,因此它可以与 Java SE 的所有实现一起使用。
比 JNA/JNI 容易得多
JavaCPP - https://github.com/bytedeco/javacpp
It provides efficient access to native C++ inside Java. Under the hood, it uses JNI, so it works with all implementations of Java SE.
Much easier than JNA/JNI
从java程序中调用c++代码。
按照以下步骤操作
javac Sample2.java
javac Sample2.java
cc -G Sample1.c -o Sample1.so
java Sample1
Call c++ code from java program.
Follow the below Step
javac Sample2.java
javac Sample2.java
cc -G Sample1.c -o Sample1.so
java Sample1
可以使用 JNA 代替 JNI 。
您所需要的只是下载 JNA jar( https ://github.com/java-native-access/jna#download )应包含在您的 java 项目中。
您需要在项目属性中提供 C++ 库的位置。
位置”。
请访问此站点获取示例,其中还包含 Java 和 C++ 项目的源代码,以了解其工作原理。( http://blog.mwrobel.eu/how-to-call-dll-methods-from-java/#a_downloads )
JNA can be used instead of JNI .
All you need is to download JNA jar( https://github.com/java-native-access/jna#download ) Which should be included in your java project.
You need to give the location of your c++ library in your project properties.
location".
Visit this site for an example which also has a source code for Java and c++ project to know how this works. ( http://blog.mwrobel.eu/how-to-call-dll-methods-from-java/#a_downloads )
如何从 Java 调用 C/C++ 函数,然后可以使用 Java 本机接口 (JNI),它是 Java 平台的一部分,是一个接口,支持在 Java 虚拟机 (JVM) 上运行的 Java 应用程序与本机应用程序或库之间进行通信用其他编程语言(例如C、C++)编写。您可以使用以下一些 URL 作为示例。
http://malinsky.eu/blog/how-to -call-ac-function-from-java/
https://www3.ntu.edu.sg/home/ ehchua/programming/java/JavaNativeInterface.html
How to call a C/C++ function from Java then you can use Java Native Interface (JNI), part of the Java platform, is an interface that enables communication between Java applications running on a Java Virtual Machine (JVM) and native applications or libraries written in other programming languages (e.g. C, C++). You can use some below URLs for as examples.
http://malinsky.eu/blog/how-to-call-a-c-function-from-java/
https://www3.ntu.edu.sg/home/ehchua/programming/java/JavaNativeInterface.html