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:

  1. are there tools can read other format?
  2. 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

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

Kivy: Swiping (Carousel & ScreenManager) -