I want to return array of string from JNI to java(actully in android). How to do it?
1 Answer
Take a look at createStringArray() in dalvik/dalvikvm/Main.c. In short:
- get the ID for the String class
- pass it to NewObjectArray to create an array of String
- create String objects and stuff them into the array
- return the array