所以我一直试图从C ++中调用java方法而没有任何运气。这是我收到的错误:
JNI ERROR(app bug):访问陈旧的本地引用0x5cb00019(索引 尺寸为2的表格中的6 VM中止 致命信号11(SIGSEGV)位于0xdeadd00d(代码= 1)
这是我在代码(java-side)中所做的:
public class Wrapper extends Activity{
private native void initJNIBridge();
static final String TAG = "Wrapper";
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
initJNIBridge(); // Calls C++ function.
}
public void upgradeAdFree() {
Log.d(TAG, "Wrapper::upgradeAdFree()");
}
这是C ++方面:
typedef struct JniMethodInfo_
{
JNIEnv * env;
jclass classID;
jmethodID methodID;
} JniMethodInfo;
extern "C"
{
static jobject javaObj;
// get env and cache it
static JNIEnv* getJNIEnv(void)
{
JavaVM* jvm = cocos2d::JniHelper::getJavaVM();
if (NULL == jvm) {
LOGD("Failed to get JNIEnv. JniHelper::getJavaVM() is NULL");
return NULL;
}
JNIEnv *env = NULL;
// get jni environment
jint ret = jvm->GetEnv((void**)&env, JNI_VERSION_1_4);
switch (ret) {
case JNI_OK :
// Success!
return env;
case JNI_EDETACHED :
// Thread not attached
// TODO : If calling AttachCurrentThread() on a native thread
// must call DetachCurrentThread() in future.
// see: http://developer.android.com/guide/practices/design/jni.html
if (jvm->AttachCurrentThread(&env, NULL) < 0)
{
LOGD("Failed to get the environment using AttachCurrentThread()");
return NULL;
} else {
// Success : Attached and obtained JNIEnv!
return env;
}
case JNI_EVERSION :
// Cannot recover from this error
LOGD("JNI interface version 1.4 not supported");
default :
LOGD("Failed to get the environment using GetEnv()");
return NULL;
}
}
// get class and make it a global reference, release it at endJni().
static jclass getClassID(JNIEnv *pEnv)
{
jclass ret = pEnv->FindClass(CLASS_NAME);
if (! ret)
{
LOGD("Failed to find class of %s", CLASS_NAME);
}
return ret;
}
static bool getMethodInfo(JniMethodInfo &methodinfo, const char *methodName, const char *paramCode)
{
jmethodID methodID = 0;
JNIEnv *pEnv = 0;
bool bRet = false;
do
{
pEnv = getJNIEnv();
if (! pEnv)
{
break;
}
jclass classID = getClassID(pEnv);
methodID = pEnv->GetMethodID(classID, methodName, paramCode);
if (! methodID)
{
LOGD("Failed to find method id of %s", methodName);
break;
}
methodinfo.classID = classID;
methodinfo.env = pEnv;
methodinfo.methodID = methodID;
bRet = true;
} while (0);
return bRet;
}
JNIEXPORT void JNICALL Java_org_test_games_Wrapper_initJNIBridge(JNIEnv *, jobject jobj){
LOGD("Java_org_test_games_Wrapper_initJNIBridge()");
javaObj = jobj;
return;
}
void upgradeAdFreeJNI()
{
LOGD("upgradeAdFreeJNI");
JniMethodInfo methodInfo;
if (! getMethodInfo(methodInfo, "upgradeAdFree", "()V"))
{
LOGD("Cannot find method!");
return;
}
methodInfo.env->CallVoidMethod(javaObj, methodInfo.methodID);
}
}
这里的任何建议都会非常感激,因为我已经被困在这几天了,这不是世界上最容易调试的任务。
由于
答案 0 :(得分:4)
问题是您指向作业的静态指针不再有效。您需要保护它免受任何垃圾收集器运行。这可以通过使用全局引用而不是本地引用来完成。 而不是仅仅分配指针创建一个globalRef。
JNIEXPORT void JNICALL Java_org_test_games_Wrapper_initJNIBridge(JNIEnv *, jobject jobj)
{
LOGD("Java_org_test_games_Wrapper_initJNIBridge()");
javaObj = env->NewGlobalRef(env, jobj);
return;
}
但请注意,您还必须释放globafRef。
答案 1 :(得分:2)
如错误所示,您不能简单地将指针存储到对象。如果要存储它,则必须存储对象的本地或全局引用。见http://docs.oracle.com/javase/6/docs/technotes/guides/jni/spec/functions.html#global_local
更改为:
JNIEXPORT void JNICALL Java_org_test_games_Wrapper_initJNIBridge(JNIEnv *env, jobject jobj){
LOGD("Java_org_test_games_Wrapper_initJNIBridge()");
javaObj = NewGlobalRef(env, jobj);
return;
}