tags:

views:

40

answers:

1

I have read some posts here about arrays in JNI but since I'm not familiar with JNI at all I still don't know how to create a int array and add some values. I have two int values and I want to put them into a int array to return that array (at the end of the call).

I think it's something very simple and unfortunately I couldn't do it yet...

A: 

This post actually answers my question http://stackoverflow.com/questions/1610045/how-to-return-array-from-jni-to-java

Forgive me for the double posting :)

mkn