其他分享
首页 > 其他分享> > Eclipse 安装反编译插件

Eclipse 安装反编译插件

作者:互联网

使用eclipse开发难免要进行查看class文件的操作,通常使用的是jad及jadeclipse插件。

我使用的也是这种情况

下载jad,https://varaneckas.com/jad/,目前最新版本是1.5.8g,看是2006年7月份更新的,时间比较久远了。

下载安装jadeclipse插件,https://sourceforge.net/projects/jadclipse/files/,目前版本是3.3,2007年更新,也是时间比较久远了。

但在开发过程中,遇到以下情况

/*jadclipse*/

/*
    DECOMPILATION REPORT

    Decompiled from: D:\e4.4wksp\HelloWorld\WebContent\WEB-INF\lib\spring-jdbc-5.2.20.RELEASE.jar
    Total time: 151 ms
    Jad reported messages/errors:
The class file version is 52.0 (only 45.3, 46.0 and 47.0 are supported)
JavaClassFileParseException: Invalid tag value 0x12
    Exit status: 0
    Caught exceptions:
*/

我使用的是以下环境

jdk1.8.0.20,

Eclipse Java EE IDE for Web Developers.

Version: Luna Service Release 2 (4.4.2)
Build id: 20150219-0600

所以想其他的办法

看到有使用jd的,http://java-decompiler.github.io/

这个JD啊,有两种常用工具

1是作为单独工具对jar包或class文件进行反编译查看

2是作为eclipse插件使用

标签:反编译,插件,jar,Eclipse,使用,jad,class
来源: https://www.cnblogs.com/shichq/p/16316194.html