目录 一 找到java编译后的class文件 二 查看编译后的结果 三 将字节码文件拷贝到IDEA中 四 打开这个class文件 一 找到java编译后的class文件 二 查看编译后的结果 发现是乱码 三 将字节码文件拷贝到IDEA中 四 打开这个class文件 下面这个结果就是IDEA反编译的结果 // // Source code recreated from a .class file by IntelliJ IDEA // (powered by Fernflower decompiler) // public class Employee { String name; int age; String designation; double salary; public Employee(String name, int age, String designation, double salary) { this.name = name; this.age = age; this.designation = designation; this.salary = salary; } public Employee() { } public String getName() { return this.name; } public void setName(String