Rhino offers this:
http://www.mozilla.org/rhino/tutorial.html#usingJSObjs
Also Scriptable interface offers get() and set() so you can easily enumerate the properties of an object and add it to an array:
Scriptable arr = (Scriptable) result;
Object [] array = new Object[arr.getIds().length];
for (Object o : arr.getIds()) {
int index = (Integer) o;
array[index] = arr.get(index, null);
}
Same thing but not using NativeArray since that appears to be a Rhino specific thing. You could easily drop a breakpoint and see what type of object you were given then downcast to that. It's some sort of JS Array implementation that's pretty close to NativeArray.
sun.org.mozilla.javascript.internal.NativeArray– Pointy Jan 13 '12 at 16:44