vote up 2 vote down star

Hello, I am a beginner programmer and I am attempting to use the android NDK.

Is there a way to return an array (in my case an int[]) created in JNI to java? If so, please provide a quick example of the JNI function that would do this.

-Thanks

flag
1  
Added +1 to question as somebody else negated it -- just curious: it's not such a ridiculous thing to ask, is it? – Neil Coffey Oct 22 at 21:40
No, its not ridiculous to ask, but you'd expect at least some effort put into explaining why using the available documentation didn't work, or what the exact problem is. As it stands, the question is tantamount to 'please rexplain the docs to me'. – Jherico Oct 22 at 21:54
@Neil and Jherico ... as noted, but a beginner trying to populate [] from JNI is going to be, ahem, challenging. OP asks for example, that is online at Java API docs: java.sun.com/developer/onlineTraining/… – Nicholas Jordan Oct 23 at 0:06

1 Answer

vote up 3 vote down check

If you've examined the documentation and still have questions that should be part of your initial question. In this case, the JNI function in the example creates a number of arrays. The outer array is comprised of an 'Object' array creating with the JNI function NewObjectArray(). From the perspective of JNI, that's all a two dimensional array is, an object array containing a number of other inner arrays.

The following for loop creates the inner arrays which are of type int[] using the JNI function NewIntArray(). If you just wanted to return a single dimensional array of ints, then the NewIntArray() function is what you'd use to create the return value. If you wanted to create a single dimensional array of Strings then you'd use the NewObjectArray() function but with a different parameter for the class.

Since you want to return an int array, then your code is going to look something like this:

JNIEXPORT jintArray JNICALL Java_ArrayTest_initIntArray(JNIEnv *env, jclass cls, int size)
{
 jintArray result;
 result = (*env)->NewIntArray(env, size);
 if (result == NULL) {
     return NULL; /* out of memory error thrown */
 }
 int i;
 // fill a temp structure to use to populate the java int array
 jint fill[256];
 for (i = 0; i < size; i++) {
     fill[i] = 0; // put whatever logic you want to populate the values here.
 }
 // move from the temp structure to the java structure
 (*env)->SetIntArrayRegion(env, result, 0, size, tmp);
 return result;
}
link|flag
Yeah, I did that already. I was having trouble understanding the example that was related to my problem ( the last one ), and I was wondering if someone would mind explaining a simpler example with just returning an int[]. – EnderX Oct 22 at 21:30
EDIT: Please ignore my previous comment, the above code does work. Thank you! That was very helpful. – EnderX Oct 23 at 21:23
EDIT2: The code works, but you have to change tmp in the SetIntArrayRegion(...) to fill. – EnderX Oct 23 at 21:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.