outofmemoryexception

java.lang.OutOfMemoryError: bitmap size exceeds VM budget

Hey guys, So I've got a lazy image loader for my ListView. I also use this tutorial for better memory management and have SoftReference Bitmap images stored in my ArrayList. My ListView works loads 8 images from a DB then once the user scrolls all the way to the bottom it loads another 8 etc etc. There was no issue when there were arou...

Groovy: Handling large amounts of data with StreamingMarkupBuilder

Hello, The scenario is the following. I have a plain text file which contains 2,000,000 lines with an ID. This list of IDs needs to be converted to a simple XML file. The following code works fine as long as there are only some thousand entries in the input file. def xmlBuilder = new StreamingMarkupBuilder() def f = new File(inputFile)...

How to write an Image without running out of memory in Java?

final BufferedImage img = new BufferedImage(3500, 2480, BufferedImage.TYPE_BYTE_INDEXED); final Graphics2D g2D = img.createGraphics(); g2D.setBackground(Color.white); g2D.clearRect(0, 0, width, height); (full code in this question). This code results in a Java Heap Space exception although I've set the jvm attribute to 3GB. Could that...

Have PHP dump heap on OutOfMemory exception

I am currently debugging a script that constantly runs into OutOfMemory exceptions. It is run as a cronjob and usually runs fine, but when the cronjob wasn't run for a while (for whatever reason) the script has to handle to many elements that queued up and will run into a OutOfMemory exception. From examining the code I was not able to ...

Preventing ConcurrentLinkedQueue<T> from outofmemory Exception

When working with ConcurrentLinkedQueue, how can I limit the size of the Queue. Is it possible that it will through outofmemory exception ? ...