2013/1/28 Oleg Kalnichevski <[email protected]>: > On Mon, 2013-01-28 at 23:42 +0100, Olivier Lamy wrote: >> Hi, >> Is there any way to retrieve a file which is larger than Integer.MAX_VALUE ? >> ContentLengthInputStream has a cast which can be bigger than >> Integer.MAX_VALUE >> >> if (pos + len > contentLength) { >> len = (int) (contentLength - pos); >> } >> >> Thanks, >> -- >> Olivier Lamy > > Olivier > > This applies to one read operation only (unless I am missing something). > I believe byte arrays in Java physically cannot be larger than > Integer.MAX_VALUE. One can read content entities larger than > Integer.MAX_VALUE in multiple chunks, though.
arghh correct :-) > > Oleg > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > -- Olivier --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
