在JNI中传递对象始终返回NULL

时间:2013-06-04 07:46:53

标签: java c++ c java-ee java-native-interface

我正在使用JNI将对象从C ++传递给Java。但我在代码所在的地方被困了 “GetMethodID”总是返回NULL并崩溃!下面是我使用的头文件,后面是cpp代码。

  

我的目的是从JNI返回一个对象,我总是得到它   下面的cpp代码中的“emu_response_constructor Null”。

/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class com_em_Grabber */

#ifndef _Included_com_em_Grabber
#define _Included_com_em_Grabber
#ifdef __cplusplus
extern "C" {
#endif
/*
 * Class:     com_em_Grabber
 * Method:    getProcessedImage
 * Signature: (II[B)Lcom/em/Response;
 */
JNIEXPORT jobject JNICALL Java_com_em_Grabber_getProcessedImage
  (JNIEnv *, jobject, jint, jint, jbyteArray);

#ifdef __cplusplus
}
#endif
#endif

以下是我使用的cpp文件。将对象传递给Java的地方。

JNIEXPORT jobject JNICALL Java_com_em_Grabber_getProcessedImage
  ( JNIEnv *env, jobject obj, jint jRows, jint jCols,jbyteArray jByteArray ){

         jclass emu_response = env->FindClass("com/em/Response");

         if (emu_response == NULL) {
             cout << "emu_response Null" << endl;
        }

         jmethodID emu_response_constructor = env -> GetMethodID(emu_response, "<init>", "(II[B)Lcom/em/Response;");
         if (NULL == emu_response_constructor ) {

             cout << "emu_response_constructor Null" << endl;

         }
   int number = 90;
   jobject jEmuResponse = env->NewObject ( emu_response,emu_response_constructor, jByteArray, number );

 return jEmuResponse;

}

以下是我的java类:

public class Response {


    private int age;
    private byte[] result = null;


    public Response()
    {

    }
    public Response(byte[] result,int age) {
    this.age = age;
    this.result = result;
    }

    public int getAge() {
    return age;
    }
    public void setAge(int age) {
    this.age = age;
    }
    public byte[] getResult() {
    return result;
    }
    public void setResult(byte[] result) {
    this.result = result;
    }

1 个答案:

答案 0 :(得分:0)

请勿尝试自行制作JNI签名。使用javap -s的输出。

在这种情况下,显然您的参数类型不按顺序排列。 我认为正确的签名是“([BI} Lcom / em / Response;”,但不要相信我的话:使用javap -s。总是

并修复您的代码,以便在您从任何API获得意外结果时,您不仅可以打印它并继续,就好像值是合法的一样。这就是导致崩溃的原因。