Hi!
I'm having trouble grasping the JNI concept:
I have a method in an .java file that sends a
String array to my native code,which is written in C. I'm trying to manipulate this String array (just for educational purposes) and return the manipulated String array back to my
Java code.
Can anyone teach me the right way to access the elements in the String[] in C? And what do I have to do to manipulate the array in C. I'm familiar with process of making a header file from Java, etc. It's just the C part that I'm struggling with..