1
我需要從一些C++代碼內部執行jar
文件。從C++代碼運行可執行jar
我想這下面的命令
int ret = execlp("java", "java", "-jar", "myprog.jar", (char *)0);
它的工作fine.but我的問題是我的C++主線程正在執行我的罐子file.i不想excecuting罐子後停止我的C++主線程後停止file.how我可以做到這一點。
問候
我需要從一些C++代碼內部執行jar
文件。從C++代碼運行可執行jar
我想這下面的命令
int ret = execlp("java", "java", "-jar", "myprog.jar", (char *)0);
它的工作fine.but我的問題是我的C++主線程正在執行我的罐子file.i不想excecuting罐子後停止我的C++主線程後停止file.how我可以做到這一點。
問候
正常方式來解決這個問題是fork()和隨後的exec()從所述新生成的過程。
您可以隨時使用JNI to launch a JVM並調用程序的主要方法。
#include <jni.h> /* where everything is defined */
...
JavaVM *jvm; /* denotes a Java VM */
JNIEnv *env; /* pointer to native method interface */
JDK1_1InitArgs vm_args; /* JDK 1.1 VM initialization arguments */
vm_args.version = 0x00010001; /* New in 1.1.2: VM version */
/* Get the default initialization arguments and set the class
* path */
JNI_GetDefaultJavaVMInitArgs(&vm_args);
vm_args.classpath = ...;
/* load and initialize a Java VM, return a JNI interface
* pointer in env */
JNI_CreateJavaVM(&jvm, &env, &vm_args);
/* invoke the Main.test method using the JNI */
jclass cls = env->FindClass("Main");
jmethodID mid = env->GetStaticMethodID(cls, "test", "(I)V");
env->CallStaticVoidMethod(cls, mid, 100);
/* We are done. */
jvm->DestroyJavaVM();
我希望有人能進一步解釋這個...我一直看到這個回答其他問題,但「...」部分仍然是「......」 ...... 我不知道放什麼...... – Kayvar