如何获取异步调用的JNI接口指针(JNIEnv *)

我了解到JNI接口指针(JNIEnv *)仅在当前线程中有效。假设我在本机方法中启动了一个新线程;如何将事件异步发送到Java方法?由于此新线程不能具有(JNIEnv *)的引用。为(JNIEnv *)存储全局变量显然行不通吗?



白板的微信
浏览 1023回答 3
3回答

宝慕林4294392

在使用从Java到C ++的JNI进行的同步调用中,JVM已设置了“环境”,但是从任意C ++线程的另一个方向来看,可能没有因此,您需要按照以下步骤使用以下内容掌握JVM环境上下文 GetEnv必要时附加上下文 AttachCurrentThread使用正常调用该方法 CallVoidMethod分离使用 DetachCurrentThread完整的例子。请注意,我过去在博客中详细介绍了此内容void callback(int val) {&nbsp; &nbsp; JNIEnv * g_env;&nbsp; &nbsp; // double check it's all ok&nbsp; &nbsp; int getEnvStat = g_vm->GetEnv((void **)&g_env, JNI_VERSION_1_6);&nbsp; &nbsp; if (getEnvStat == JNI_EDETACHED) {&nbsp; &nbsp; &nbsp; &nbsp; std::cout << "GetEnv: not attached" << std::endl;&nbsp; &nbsp; &nbsp; &nbsp; if (g_vm->AttachCurrentThread((void **) &g_env, NULL) != 0) {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; std::cout << "Failed to attach" << std::endl;&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; } else if (getEnvStat == JNI_OK) {&nbsp; &nbsp; &nbsp; &nbsp; //&nbsp; &nbsp; } else if (getEnvStat == JNI_EVERSION) {&nbsp; &nbsp; &nbsp; &nbsp; std::cout << "GetEnv: version not supported" << std::endl;&nbsp; &nbsp; }&nbsp; &nbsp; g_env->CallVoidMethod(g_obj, g_mid, val);&nbsp; &nbsp; if (g_env->ExceptionCheck()) {&nbsp; &nbsp; &nbsp; &nbsp; g_env->ExceptionDescribe();&nbsp; &nbsp; }&nbsp; &nbsp; g_vm->DetachCurrentThread();}

蛊毒传说

该问题中与该问题相关的唯一部分是GetEnv,AttachCurrentThread并且DetachCurrentThread甚至没有解释。
打开App,查看更多内容
随时随地看视频慕课网APP