Returning List<String> or String[][] in JNI
843829Jul 12 2007 — edited Jul 23 2007Hi,
I am calling a native function in C++ from Java which has to return List<String> or String[][]. Is this possible?
The java declaration is - private native List<String> GetListNative();
In C++ the declaration is:
JNIEXPORT jobject JNICALL Java_com_GetListNative
(JNIEnv *env, jobject obj);
Please help!
Thanks in advance...
Message was edited by:
arjundg