I have a list of binaries written in java, ada,C, python and I want to execute them. How to do that ? Is there any JVM binding to those languages ? Thanks for your answers
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
If all you want to do is execute existing applictions, you can use the
|
|||
|
|
|
Yes. Here is a link to a good blog article on how to do it: Running system commands in Java. The gist of it is that you need to do the following:
You can pretty much put any command in there but the only gotcha that I have encountered in be aware of system environment variables like the PATH that you are running your JVM in. |
|||||||
|
|
If you want to interact with the binary API's, use:
|
|||
|
|