制作asmtools.jar

今天因为需要asmtools.jar来完成分析一个java执行文件的内容顺序,奈何openjdk上发行asmtools.jar的网页在国内由打不开,只能自己下载源代码文件,自己编译成jar文件,这里就需要Apache Ant工具来编译了。
第一步:进入https://ant.apache.org/bindownload.cgi拿到ant.zip文件,在windows任意位置解压(这里暂时就讨论windows上的)。

下载页面

第二步:配置环境变量。配置path环境变量(要添加ant的安装bin文件路径)。
ant_home.png
path.png

第三步:验证环境变量是否生效。
验证.png

第四步:进入http://hg.openjdk.java.net/code-tools/asmtools网站下载asmtools的zip文件。

asmtools.png

第五步:进入asmtools中的build目录,该目录下有个build.xml文件。执行ant jar 命令,如图所示就可以拿到asmtools.jar文件在同级asmtools-7.0-build\binaries\lib目录下。
执行.png

如果大家有需要直接的asmtools.jar文件可以私信我。

你可能感兴趣的:(制作asmtools.jar)