[android-developers] Re: Getting 'OutOfMemoryException' while trying to download a 14mb mp3 file from webserver

2009-01-26 Thread Romain Guy
You cannot allocate a 14MB byte array in memory. Your application has only access to 16MB maximum. To download a large file from the Web, simply read it little bit by little bit. For instance, instead of reading 16MB at once, download 16 or 32kB, write them to the outputstream, and keep looping

[android-developers] Re: Getting 'OutOfMemoryException' while trying to download a 14mb mp3 file from webserver

2009-01-26 Thread Mahesh Vaghela
Romain, Thank you very much for replying very soon. I am trying your suggestion and do post my detail code as soon as it get done. Once again, Thanks a lot! On Tue, Jan 27, 2009 at 10:37 AM, Romain Guy romain...@google.com wrote: You cannot allocate a 14MB byte array in memory. Your