On Thu, Jun 25, 2009 at 10:39 AM, Abdul Mateen<[email protected]> wrote: > How can we look to into a class file for that, is there some tools ? or > simply with cat / pico ?
There are many tools available that can disassemble .class files. dx (the tool that turns .class files into .dex files) includes one that I'm particularly fond of. "dx --dump --bytes path/to/Name.class" will give you a listing that includes the actual bytes on the left and the corresponding interpretation on the right. -dan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
