Out of memory in java swing application
Hi,
I am continously getting out of memory in my java application. I collected the java heap dump and found major memory chunk ( >90%) of total java heap is taken by some "class [I", which is array of 'Inetger' objects and sometimes by "class [S", which is array of 'Short' objects.
Elements of these arrays are referred by:
java.awt.image.DataBufferUShort and
sun.awt.image.ShortInterleavedRaster
and these are consuming major memory chunks.
Has anyone observed this kind of problem?
I am not able to proceed in my analysis and kind of struck at these Integer and Short arrays. Please help.
Thanks
Charanjeet

