JNI vs Runtime.exec()(JNI 与 Runtime.exec())
问题描述
我有两个选择 - 我可以使用 JNI 或使用 Runtime.exec 来执行 C++ 库.
I have two options - I can either use JNI or use Runtime.exec to execute a C++ library.
C++ 程序占用大量 CPU 资源且运行时间较长,即某些调用可能需要几个小时才能返回.
The C++ program is CPU intensive and long running i.e. some calls may take up to a couple of hours to return.
各有什么优缺点?我应该采用哪种方法?
What are the pros and cons of each? Which approach should I go for?
推荐答案
如果需要与 C++ 库交互,请选择 JNI.
If you need to interact with the C++ library, go for JNI.
如果它是您只想调用的独立程序(也许还想获取输出),Runtime.exec() 会简单得多.
If it's a standalone program that you just want to invoke (and perhaps grab the output), Runtime.exec() is much, much simpler.
这篇关于JNI 与 Runtime.exec()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JNI 与 Runtime.exec()
基础教程推荐
- 如何在相机中应用自定义滤镜 [Surfaceview 预览]. 2022-01-01
- JPA惰性列表上的流 2022-01-01
- 在springboot中如何给mybatis加拦截器 2023-04-29
- Maven:无效的目标版本:10 2022-01-01
- 将 double 转换为 Int,向下舍入 2022-01-01
- 控制台应用程序中的 Java 键盘输入解析 2022-01-01
- doFilter()是在servlet的工作完成之前还是之后执行的? 2022-01-01
- Java ECDSAwithSHA256 签名长度不一致 2022-01-01
- 将 Windows 证书导入 Java 2022-01-01
- 在java中使用xpath和selenium解析HTML表格数据 2022-01-01
