java反编译命令javap

1. 输出所有类和成员

javap -private XX.class

2. 输出分解后的代码

javap -c XX.class
原文地址:https://www.cnblogs.com/yrqiang/p/5339680.html