Jadclipse 是一个集成Eclipse 的Java反编译插件。Jadclipse可以帮助查看.class文件。可以对单个.class文件反编译,也可以对jar一次性全部反编译,可以处理文件夹内的所有文件,甚至可以处理*.jar文件。
Jadclipse 配置
Jadclipse安装
方法1:下载jadclipse_3.3.0.jar,拷贝到eclipse的plugins目录下。
方法2:使用link方式安装,建立E:\eclipse3.1plugins\jadclipse3.1.0\eclipse\plugins的目录结构,将jadclipse_3.1.0.jar放到plugins目录下面(注:其中E:\eclipse3.1plugins为你自己定义的一个专门放置插件的目录)。再在%ECLIPSE_HOME%\links目录下面建立一个jadclipse3.1.0.link文件(该文件名随便取,保证后缀为。link就OK)。文件里面内容为:path=E:\\eclipse3.1plugins\\jadclipse3.1.0.启动eclipse,打开Window->Preferences->Java->JadClipse,如果没有找到JadClipse,检查插件安装的版本是否与你安装的eclipse版本对应。
我安装的eclipse是:eclipse3.1.2
方法3:启动eclipse,打开:Window->Preferences->Java->JadClipse.
- 2021-12-03Eclipse Kepler 4.8.0 免费版
- 2017-07-10Eclipse IDE for Java EE Developers 4.6 SR1 简体中文版
- 2017-07-10Eclipse IDE for Java Developers 4.6 中文版
1、Path to decompiler,这里设置反编译工具jad的全路径名,比如:%JAVA_HOME%\bin\jad.exe.
2、Directory for temporary files,这里设置临时文件路径。
至于Window->Preferences->Java->JadClipse目录下的Debug,Directives,Formatting,Misc目录中的参数设置,就不罗嗦。
启动或重起eclipse,修改window -> Preferences -> Java -> JadClipse 下的Path to decompiler 如:D:\eric\jadnt158\jad.exe(jadnt158.zip解压后的目录)
Windows -> Perference -> General -> Editors -> File Associations中修改“*.class”默认关联的编辑器为“JadClipse Class File Viewer”
方法4:
四、安装完成后,eclipse自动将JadClipse Class File Viewer设置成class文件的缺省打开方式。如果没有默认,可以在Eclipse的Windows——> Perference——>General->Editors->File Associations中修改“*.class”默认关联的编辑器为“JadClipse Class File Viewer”。设置完成后,双击*.class文件,eclipse将自动反编译。
注: 对于存在源代码的类,它不会强行反编译,也就是说它还是会用eclipse自带的Class File Viewer查看class文件。
∨ 展开