Convert .class to .java

前端 未结 3 675
野性不改
野性不改 2020-12-03 02:54

I have some .class files that I need to convert to .java so I did:

javap -c ClassName.class

and all the time I have the same error

3条回答
  •  被撕碎了的回忆
    2020-12-03 03:01

    Invoking javap to read the bytecode

    The javap command takes class-names without the .class extension. Try

    javap -c ClassName
    

    Converting .class files back to .java files

    javap will however not give you the implementations of the methods in java-syntax. It will at most give it to you in JVM bytecode format.

    To actually decompile (i.e., do the reverse of javac) you will have to use proper decompiler. See for instance the following related question:

    • How do I "decompile" Java class files?

提交回复
热议问题