views:

42

answers:

2

If I take dump, using Windbg, of Java process running on Windows

Can I analyze (easly?) the Java heap, objects, and threads?

Just like I could do with SOS for .Net process?

Otherwise - how can I offline debug a problem happening on production systems?

Thanks!

+2  A: 

There's a Java Heap Analysis Tool

Boris Pavlović
+2  A: 

jvisualvm can be used to load a dump and then analyze it

EDIT:

This comes in the JDK redist...

Aaron