安装方法:
help =>
Software Updates =>
Find and Install...
选中Search for new features to install
单击"New Remote Site..."
在URL栏输入 http://www.technoetic.com/eclipse/update/
下一步
可以看到“jode decompiler plugin *.*”,
选上安装就可以了。
安装好重启Eclipse到
Window =>
Preferences... =>
Java => Jode Decompiler选项卡。
配置:
Window =>
Preferences... =>
General =>
Editors =>
File Associations找到"*.class"在"Associated editors"
里面可以看到"Jode class file viewer"选中它再单击Default按钮.
在Eclipse中展开jar文件,双击class文件即可看到反编译之后的源代码.
反编译插件jadclips
下载:jadclips插件网站:
http://jadclipse.sourceforge.net/
下载Jad反编译工具:
http://www.kpdus.com/jad.html#download,
在该页中找到适合自己操作系统平台的jad下载。
下载后解压到文件夹(比如:D:/java/jad)
安装:
将Eclipse插件jadclips安装好:把插件放进plugins包中,配置好links。
设置参数:
启动eclipse,打开:Window->Preferences->Java->JadClipse.
1、Path to decompiler,这里设置反编译工具jad的全路径名,比如前面解压的:D:/java/jad/jad.exe.
2、Directory for temporary files,这里设置临时文件路径。
安装完成后,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文件。
文章出处:http://hi.baidu.com/hkkkhk1984/blog/item/dcf6a4d34edbd80a3bf3cf42.html