Possible Duplicates:
Where can I find a Java decompiler?
How do I “decompile” Java class files?
Any tool can decompile the class back to java source? Like the reflector in C#?
Possible Duplicates:
Where can I find a Java decompiler?
How do I “decompile” Java class files?
Any tool can decompile the class back to java source? Like the reflector in C#?
you can use javap command for that
javap classname
to get the full code i guess there are a lot of java decompilers available on net for free..
A Java class can be decompiled by using a decompiler which takes a .class
files as input and gives its Java source code as output.
Refer these questions on stackoverflow for more details.
How do I “decompile” Java class files? (Using external tools)
How to Decompile Java (using javap
command that is available with JDK)
Also See
What is the best software to decompile a java class file ?
Where can I find a Java decompiler?
Decompile compiled Java file with proprietary headers