How can i run a C application from Java? Thanks for your help!
12-18-2010, 02:09 PM
JosAH
Quote:
Originally Posted by bernico
Hi! I need your help!
How can i run a C application from Java? Thanks for your help!
Read the API documentation for the Runtime.exec( ... ) methods; if your application is stored in a .dll file (or a .so file for Unixes) you could try the JNI or JNA approach.