编译并运行 C++来自 Java 应用程序的程序
我需要从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想实际运行最终的应用程序吗?这看起来更像是你想要构建它。
无论哪种方式,您都可以使用:
从 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:
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.