3

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?

Pablo Fernandez
  • 279,434
  • 135
  • 377
  • 622

1 Answers1

4

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
  • 302,674
  • 57
  • 556
  • 614