jaredmt
- 120
- 0
I have Jbuilder2007 and I am wondering if there is a way i can decompile .exe files so i can read the code in java.
Decompiling .exe files to Java using JBuilder 2007 is not feasible. Java is typically compiled to .class files containing JVM bytecode, not .exe files. If an application has been compiled to an .exe using tools like JET, reverse-engineering it back to Java source code is impractical. Editing an .exe file requires a disassembler and knowledge of assembly language, as there is no reliable method to automatically convert machine code to a high-level language.
PREREQUISITESSoftware developers, reverse engineers, and anyone interested in understanding executable file structures and decompilation processes.
jaredmt said:ok, so basically there is no way to edit a .exe file? i thought maybe there was a way the code could be translated to java or pseudocode or something
dwahler said:AFAIK, there is currently no way to reliably and automatically reverse-engineer machine code to a high-level language; it's a much more complex problem than you might think.