Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有为 java 文件生成中间代码的工具?或者是否有任何资源可以帮助生成一个?谢谢。
Java 源代码通常被编译为称为 Java 字节码的中间表示。如果这就是你想要的,那么你只需要一个 Java 编译器。如果您想要 JVM 汇编程序代码,您可以在 .class 文件上运行反汇编程序 javap。
如果不是其中任何一个,那么您将必须更具体地了解您想要的中间代码。