简体   繁体   中英

Returning array of string from JNI to android

I want to return array of string from JNI to java(actully in android). How to do it?

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM