I have a object store in Java. My C program stores data (in form of char array) in java. Now I wish to retrieve data from my store. I cannot find any function call that returns me an char array. How can I do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You need to use one of the various API's provided by JNI, probably GetCharArrayElements(). Following is an example, taken from working code which retrieves a byte array from Java into C (the code is a function which is invoked by Java, but the mechanics are identical).
|
|||
|
|
|
Created a new question regarding it. Link: Retrieving byte array of unknow length from Java store |
||||
|
|