Viewing contents of a .jar file

后端 未结 30 1083
一向
一向 2020-12-02 03:54

What would be the easiest way to view classes, methods, properties, etc. inside a jar file? I\'m looking for something equivalent to the very useful Lutz Roeder .NET Ref

30条回答
  •  醉话见心
    2020-12-02 04:39

    Jad is klunky and no longer maintained. I've switched to "Java Decompiler", which has a slick UI and support for new language features.

    Every decompiler I've used, though, runs into code it doesn't successfully decompile. For those, it helps to understand the disassembled Java byte code produced by the standard JDK tool, javap.

提交回复
热议问题