Is it possible to decompile a java .class file within another program ? I'm aware of tools like CAVAJ and DJ Java Decompiler. Why ? : I'm modifying a class file within the program and dumping it into the same. I want to then parse the source file of the modified class file. Thanks in advance.
|
Here is a possible answer (this is what I use for compiling source files)
Then you can use something like:
I guess JD-GUI will not work; you need a command line java decompiler. These links might help: The last link has a download link to JAD, a command line tool for windows computers. Depending on the OS the command might vary but it might just be "jad classname.class" if you move jad to your cmd class path. I have mac os x so I am not sure where this is located. I hope this helps! |
|||
|
|
If you're looking to modify the class at runtime it may not be needed to decompile the class. You can manipulate the bytecode. Take a look at http://cglib.sourceforge.net/, maybe that'll help you |
|||
|
Runtime.exec(). – Daanish Nov 9 '12 at 8:45