-1

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#?

Community
  • 1
  • 1
user496949
  • 83,087
  • 147
  • 309
  • 426
  • http://stackoverflow.com/questions/671394/where-can-i-find-a-java-decompiler – Mark Feb 25 '11 at 14:11
  • 2
    These are previous questions about this: http://stackoverflow.com/questions/1383022/what-is-the-best-software-to-decompile-a-java-class-file http://stackoverflow.com/questions/272535/how-do-i-decompile-java-class-files http://stackoverflow.com/questions/4378669/how-to-decompile-java http://stackoverflow.com/questions/4151696/decompile-compiled-java-file-with-proprietary-headers – Sean Patrick Floyd Feb 25 '11 at 14:11
  • 5
    If only there were some way to find answers that already exist. Some means of searching or something. – T.J. Crowder Feb 25 '11 at 14:18

3 Answers3

0

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..

Vipin
  • 398
  • 1
  • 6
  • 17
0

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

Community
  • 1
  • 1
Alpine
  • 3,838
  • 1
  • 25
  • 18