Hello There ... !!
I write a small application to figure out how much free memory is available
Code:display.setCurrent(new Alert("Free Memory, Total Memory ", "Free Memory=" +String.valueOf(Runtime.getRuntime().freeMemory()/1024) +" KB And Total Memory Memory=" +String.valueOf(Runtime.getRuntime().totalMemory()/1024) +" KB", null, AlertType.INFO) , lt);I was surprised to see this result.......The Result was on Nokia N95
Free Memory=250 KB And Total Memory= 500 KB
I was asuming that I have atleast 2MB for Java JVM.....
Can I increse this memory size......
However Storage Memmory is more than 100 MB on Phone Memory...
Comment are welcomed on this issue.....

Reply With Quote

