Hi,
I'm working with very large datasets and would like to be able to process arrays with more than 2^31-1 elements. This limit seems to come about because Java requires a signed integer to be passed as a parameter to an array declaration, e.g.:
Object bytes = new byte[2147483647]; // works
Object bytes = new byte[2147483648]; // fails
Is there
any way to get around this?
Thanks very much,
- Davi