Technology Programming

How to Disassemble Java

    • 1). Click the Windows "Start" menu button and type "cmd" in the search text box. Press "Enter" to open the Windows command line.

    • 2). Type "cd path" and press "Enter" -- where "path" is the location of the Java class file you want to disassemble.

    • 3). Type "javap filename" and press "Enter" -- where "filename" is the Java source code file you want to disassemble. The disassembled code is displayed in the command prompt window.



Leave a reply