jmap - Convert from non-binary to binary format for java memory dump -
using tool jmap, can create memory dump in 2 formats:
binary format: jmap -dump:format=b,file=binary_dump.dat <pid>
or
other format: jmap -dump:file=other_format_dump.dat <pid>
i've read number of places binary format readable tools jhat , jvisualvm.
so:
- are there tools can read other format?
- are there tools can convert other format binary format?
i have memory dump file created using other format , need able examine it, preferably eclipse memory analyzer tool.
Comments
Post a Comment