Re: [android-developers] Re: Uploading large files - using setChunkedStreamingMode

2012-05-21 Thread jitendra patidar
Hi All, I have also problem during lazy loading of images.the out put of log is like this. please guide me if .. (28446): cache size=4191750 length=107 05-16 15:33:06.110: I/MemoryCache(28446): cache size=2952450 length=81 05-16 15:33:06.250: I/MemoryCache(28446): cache size=4228200 length=108

Re: [android-developers] Re: Uploading large files - using setChunkedStreamingMode

2010-05-06 Thread Carmen Delessio
keianhzo, Do you have an example of how you call this class? I think I understand, but wanted to doublecheck. I am using an HttpURLConnection with ChunkedStreaming mode to upload videos to Facebook. Using that mode successfully avoids running into memory issues, but I am not successful in getting

[android-developers] Re: Uploading large files - using setChunkedStreamingMode

2010-04-27 Thread ferobert
Hi Carmen, I run into the same OutOfMemoryError issue when uploading video files of several MB within my app. I decided to look into this for the next version of the app. So, in the unlikely event you still haven't found a solution for this, here is how I get an answer from the server,

[android-developers] Re: Uploading large files - using setChunkedStreamingMode

2010-04-27 Thread keianhzo
Hi, I had big headaches with this issue too, and finally opted for using sockets to upload big files otherwise any way tried always led me to the OutOfMemoryException or BufferOverflowException. So here is the code that works for me. All the meat is in the send() method, but I post the whole

Re: [android-developers] Re: Uploading large files - using setChunkedStreamingMode

2010-04-27 Thread Carmen Delessio
Thanks, I'll give it a try. On Tue, Apr 27, 2010 at 8:50 AM, ferob...@gmail.com wrote: Hi Carmen, I run into the same OutOfMemoryError issue when uploading video files of several MB within my app. I decided to look into this for the next version of the app. So, in the unlikely event you