tags:

views:

138

answers:

1

I'm profiling a Java program that is leaking memory. Using JProfiler I see I get crazy amount of byte[] data. Is there a way to know more information about it? When is it allocated/created, where is it?

+4  A: 

You should be able to find the path to the GC root of those arrays, this should tell you what they are used for.

Joachim Sauer