Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

class file to java file conversion [closed]

How to get java file i.e source code from class file i.e from compiled file?

like image 887
giri Avatar asked Dec 31 '09 08:12

giri


2 Answers

Check out this Java Decompiler.

Also see this Wikipedia page to know more about decompilation.

It should be noted that the code you get on decompilation of bytecode isn't very readable.

like image 174
missingfaktor Avatar answered Oct 29 '22 21:10

missingfaktor


You have to use a disassembler.

Java Decompiler is a good choice.

Also Java Decompiler has a plug-in for Eclipse.

like image 45
Upul Bandara Avatar answered Oct 29 '22 19:10

Upul Bandara