编译并运行 C++来自 Java 应用程序的程序

发布于 2024-08-15 04:21:22 字数 123 浏览 2 评论 0原文

我需要从 java 应用程序运行 cpp propgram。 我有 Visual Studio 和 Eclipse。 我有所有的 cpp 文件和 .mak 文件,我不确定它如何帮助我......

欢迎任何帮助或指导!

i need to run a cpp propgram from a java application.
I have Visual Studio and Eclipse.
I have all of the cpp files and also a .mak file which i'm not sure about how it could help me...

any help or direction would be welcome!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风铃鹿 2024-08-22 04:21:22

您想实际运行最终的应用程序吗?这看起来更像是你想要构建它。

无论哪种方式,您都可以使用:

java.lang.Runtime.getRuntime().exec(command, environment)

从 Java 运行进程,就像从控制台运行它一样。

请参阅 http://java.sun .com/javase/6/docs/api/index.html?java/lang/System.html 了解详细信息。

Do you want to actually run the final application? This seems more like you want to build it.

Either way you can use:

java.lang.Runtime.getRuntime().exec(command, environment)

To run a process from Java like running it from a console.

See http://java.sun.com/javase/6/docs/api/index.html?java/lang/System.html for details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文