Search code examples
javajvmjava-bytecode-asmjvm-bytecode

How to get bytecode as byte array from Class


Given an arbitrary Class instance, including one that's runtime generated (no .class file on disk), is there any way to get the class bytes?


Solution

  • In general, this is not possible. While loading a class, JVM parses its bytecode and converts it to the internal representation. After that JVM is free to forget the original bytecode, and that's what really happens with HotSpot JVM.

    However, with the certain hacks it is possible to inspect the internal class representation and convert it back to a valid class file (though it will differ from the original bytecode). Such process is used in HotSpot JVM to reconstitute a class file for Instrumentation purposes.

    As a proof of concept, I've written a program that extracts processed bytecode of a loaded class from JVM memory using Unsafe. This is only for a demo; don't ever try this in production.

    EDIT

    You can also get class file data (possibly modified by JVM) using Instrumentation API. This requires a Java agent loaded either at VM bootstrap (using -javaagent VM option) or at runtime via Dynamic Attach mechanism.

    Here is an example of such agent: GetBytecode.java.

    Finally, if you don't mind using native code, there are JVMTI functions GetConstantPool and GetBytecodes to obtain the bytecodes of the particular Java method.

    Here is a JVMTI example.