# javaUpper **Repository Path**: RunCoder/javaUpper ## Basic Information - **Project Name**: javaUpper - **Description**: 极客时间java进阶训练营 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-23 - **Last Updated**: 2021-11-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # week01-vm ## 获取java字节码文件 - 1. 打开字节码文件 (`javap`) ``` javap -c ByteCode.class ``` - 2. 打开字节码 带上常量池(`-verbose` 参数) ```shell javap -c -verbose ByteCode.class ```