I want to return array of string from JNI to java(actully in android). How to do it?
views:
15answers:
2
A:
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
fadden
2010-10-22 23:40:18
thanks it has been worked
HellBoy
2010-10-25 14:12:50