I am wrote simple code that doing http transfering array of byte.
When i transfering array smaller than 400 kB to the web server it is succesfull ending (i see transfered file on site).
But when i am trying to transfer 700 kB there appear error on (NOKIA 6233) display with message.
"Out of Memory Error
java/lang/OutOfMemoryError"
So, where is memory overloading occurs? And exactly with array sized more then 400 kB.
Is it RAM memory overloading?
Beforehand for answers.
Some of my code:
OutputStream os = null;
os = hc.openDataOutputStream();
os.write(DataArray);

Reply With Quote

