James World
James World

Reputation: 29776

Create a java heap dump from a windows memory dump

I have a windows memory dump (DMP) file of a JVM process.

Is there any way I can use Java tooling to do a heap analysis of this? The SDK tools (jhat etc.) don't seem to help - they all seem to expect a Java heap dump.

(I've plenty of Windbg experience, but I am a complete ignoramus when it comes to Java debugging)

This similar question: Dump file analysis of Java process? has no answer on this point.

Upvotes: 8

Views: 2646

Answers (2)

Codeguard
Codeguard

Reputation: 7965

See my other answer covering exactly that, how to get Java information from Windows minidump

Upvotes: 1

Ashay Jain
Ashay Jain

Reputation: 98

If i understood your question properly then i would suggest you to use jconsole you can find under jdk.

You can find API here

http://docs.oracle.com/javase/6/docs/technotes/tools/share/jconsole.html

Upvotes: 0

Related Questions