How access and create multi-dimensional arrays for JNI?
I know that to access an array I use "Get<type>ArrayElements" and to create them I use "New<type>Array". What if it's an array of arrays of arrays? Like int[][][]? What do i do then?
And for example, what if I have the following java method:
publicvoid doSomething(int[][] arg1, String[][] arg2){}
and in C++, I have the following arrays filled:
int ( * ( * myIntArray ) [] ) [];
char ( * ( * ( myStringArray ) [] ) [];
How would I convert those to the parameters necessary to call the method "doSomething" from JNI?

