Android JNI:调用对象方法时应用程序崩溃

时间:2013-09-17 10:55:12

标签: java android c++ android-ndk java-native-interface

我在Android中使用JNI时遇到了一个奇怪的问题。 我得到了类Sec​​ureChannel 的对象方法 sendClearMessage(),我调用此方法返回类MessageResponse 的对象。此对象分配给jobject,然后传递给 CallObjectMethod 以调用此类的方法。每当我调用此类的方法时,应用程序崩溃时没有有用的信息。我检查每个获取jmethodID或jclass值的函数,所以问题不在于我得到这个参数的方式。这是代码:

jobject sendMessage(char *ID , char *Message)
{
    jboolean isError;

    jmethodID SendClearMessage = NULL;
    jmethodID GetMessageResponseMethod = NULL;
    jmethodID IsErrorMethod = NULL;

    jobject ID_String = NULL;
    jobject Message_String = NULL;

    jbyte Length_Jbyte;

    jobject MessageResponse = NULL;
    jobject ResponseString = NULL;

    if(env == NULL || context == NULL) return NULL;

    if(SecureChannel == NULL)
    {
        SecureChannel = createSecureChannel(context);
    }

    if(SecureChannel == NULL)
    {
        return NULL;
    }

    ID_String = env->NewStringUTF(ID);
    Message_String = env->NewStringUTF(Message);

    SendClearMessage = getSecureChannelMethod("SendClearMessage" , "(Ljava/lang/String;Ljava/lang/String;)Lpkg/msg/MessageResponse;");

    if(SendClearMessage == NULL) return NULL;

    MessageResponse = env->CallObjectMethod(SecureChannel , SendClearMessage , ID_String , Message_String);

    //Check Exception throwing - DISABLED ever return true 
    /*
    if(env->ExceptionCheck() == true)
    {
        env->ExceptionDescribe();
        env->ExceptionClear();
        return NULL;
    }*/

    if(MessageResponse == NULL)
    {
        return NULL;
    }

    IsErrorMethod = getMessageResponseMethod("isError" , "()Z");

    if(IsErrorMethod == NULL) return NULL;

    isError = env->CallBooleanMethod(MessageResponse , IsErrorMethod); //Crash HERE

    if(isError == true) return NULL;

    GetMessageResponse = getMessageResponseMethod("getMessageResponse" , "()[B");

    if(GetMessageResponseMethod == NULL) return NULL;

    return env->CallObjectMethod(MessageResponse , GetMessageResponseMethod); //Crash HERE if I comment previous CallBooleanMethod
}

函数 getSecureChannelMethod getMessageResponseMethod 是我写的函数,用于返回指定类的jmethodID。 如果我在调用sendClearMessage方法后启用异常检查,我得到一个真正的值,但在Logcat上我看不到任何异常。如果我评论IsError方法的调用,则在调用另一个方法“GetMessageResponse”时发生崩溃。如果我评论这两种方法,应用程序不会崩溃,但我看不到以这种方式获取消息响应。

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

问题如下:在SendClearMessage之前,必须检查SecureChannel的连接状态,因为连接是异步的。如果未检查连接,则调用该方法,但是进一步调用其他对象会导致崩溃,这可能是因为抛出了未处理的异常。实际上我已经读过,当VM抛出异常时,必须只调用处理异常的方法:

http://developer.android.com/training/articles/perf-jni.html