I need to send an array of 500,000 ints over a socket between two Android devices. Currently, I'm spending a lot of time converting the int[] to a byte[] so that Java's socket will accept it (see my previous question Efficiently send large int[] over sockets in Java, where we determined there's no faster way to do the typecasting in Java).
My question now is, if I take the int[] and pass it through JNI to the Android NDK, can I expect the typecasting to byte[] to go any faster in native code? I know typecasting int* to char* is quite simple in plain-old C, however I'm wondering if the JNI will negate any performance gains.
Furthermore, once I have a byte[] in my native code, can I efficiently pass it back to my Java code or do I need to implement the socket in C as well?
Edit 1: People have been posting a lot of answers without clicking on the link. Using ByteBuffers is not a good option, its actually way slower than mask-and-shift, which is still way slower than my performance critical code needs! That's why I'm asking about the NDK.
Edit 2: I changed the text above to say that C code can cast from int* to char* instead of int[] to byte[]. Hopefully that clarifies the question.
Edit 3: To clarify my use-case, this is a research problem where I distribute a large array of ints across multiple devices and sort the list in parallel. Assume that I have 500,000 ints in Java (doesn't matter where they come from) and I need to get them off the device via a socket as quickly as possible. Answers that say "don't start with an array of ints" aren't helpful. Additionally, my application code needs to be as close to 100% Java as possible. If native typecasting and sockets improve performance, that's ok, but I can't do anything else (i.e. the sort) natively.
int[]cannot be "type cast" tobyte[].. in any case, can buffers be used or must it bebyte[]? – user166390 Sep 12 '12 at 20:18int[]as(unsigned char *)with 4x length work (ignoring endianess etc) in C? The point with sendingint[]in Java over sockets is that you (or a buffer) need to convert it tobyte[]at some time which is more work than an arraycopy while C should be able to do the same (get int[] from java & send it in native code) without conversion since it can just interpret the same data in different ways. – zapl Sep 12 '12 at 22:09char*and not a Javabyte[]. I do not know if the JNI allows some magical wrapping of arrays out of memory, especially memory already belonging to another object .. there would need to be a way to tell the JNI to "detach" theint[]from the memory allocated for it as it now belongs to the new hypotheticalbyte[]object. Also, the very operation of such a cast to(char*)seems questionable in C; consider endianess, for instance. – user166390 Sep 12 '12 at 22:14byte[](where using the same memory for int[] and byte[] is afaik not possible). Directly sending the data in use by some Java object (or a memcopy of that - idk how JNI handles that) in a way that does not need manual conversion. Not intended to be a (type / endianess /.. )-safe way but a way to improve potential performance of sending a Java int[] in any way over a socket. – zapl Sep 12 '12 at 22:34