On Java performance questions on this site I often see responses from people who have "decompiled" the Java class file to see how the compiler optimizes certain things.
What program can I use to decompile a class file? Does you actually get Java code, or is it just JVM assembly code?
Thanks!