ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • How to decompile java jar
    카테고리 없음 2023. 6. 7. 18:54
    반응형
    $ git clone https://github.com/fesh0r/fernflower
    
    $ cd fernflower
    
    # build the source code using Gradle build tool
    $ gradle build
    
    # the fernflower.jar at build/lib/

     

    # decompile JAR or Class files
    # java -jar fernflower.jar /path/asm-analysis-3.2.jar /path/unknown.class /path/decompile/
    
    $ java -jar fernflower.jar /path/asm-analysis-3.2.jar /path/decompile/
    
    INFO:  Decompiling class org/objectweb/asm/tree/analysis/Analyzer
    INFO:  ... done
    INFO:  Decompiling class org/objectweb/asm/tree/analysis/AnalyzerException
    INFO:  ... done
    INFO:  Decompiling class org/objectweb/asm/tree/analysis/BasicInterpreter
    INFO:  ... done

    https://mkyong.com/java/how-to-decompile-class-in-java/

    반응형
Designed by Tistory.