Java Executable in C++
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, Can anyone ols help me how to execute a Java executable/code from C++? Is it possible pls help Thanks in Advance Ram
cberam wrote: Can anyone ols help me how to execute a Java executable/code from C++? Is it possible pls help Do you mean launch a Java program from C++ or call Java functions from C++? For the first see: java+exe[^] Directly calling Java functions from C++ is done with JNI[^]. This is an extremely clumsy, ugly, and almost unusable interface. Better start a Java program and call C++ functions (in a DLL) from the Java program. This is comparatively simple.