There is no big difference between invoking a C/C++ application
from a C/C++ code, or invoking a Java application.
Suppose you use the following command to start you Java app:
% java app
You can use function "system()" to invoke it from C/C++ code:
system("java app");
Thanks,
Nik
Hi We can do this by using EXTERN C functionality provided by c++ ,
by using this we can call the Java functions from Java .class file.
or .jar file.
(for java developers ......its similer to JNI)
if you want more details aboth such code just search it on web , you will get number of programs here.
Thanks,
-Akshay