myeclipse6.5反编译工具的配置
1、下载jadclipse的jar包,我这里下载的是net.sf.jadclipse_3.3.0.jar,
? ? ? 网址如下:http://jadclipse.sourceforge.net/wiki/index.php/Main_Page
? ? 可以根据自己的版本下载适合自己的jar包
2、把这个jar包copy到你的%ECLIPSE_HOME%\plugins目录下,
? ? 也就是\MyEclipse 6.5\myeclipse\eclipse\plugins目录下
3、下载Jad反编译工具jad.exe,
? ? ? ?网址如下:http://www.kpdus.com/jad.html#download,在该页中找到适合自己操作系统平台的jad下载。下载后解压,然后将解压后的jad.exe文件复制到一个固定的目录下面,我的是放在C:\Program Files\MyEclipse 6.5\tools下面,可以任意更改jad.exe的存放路径,只要记住路径即可。?
4、启动myeclipse6.5看看Window->Preferences>java是不是在界面上多了个jadeclipse,这就对了。?
?
5、请确保你步骤三中的Jad文件路径和在myeclipse中一样。?
? ? ? 打开:Window->Preferences->Java->JadClipse.?
? ? ?1)Path to decompiler,这里设置反编译工具jad的全路径名,我的是
? ? ? ? ? ? C:\Program Files\MyEclipse 6.5\tools\jad.exe
? ? ?2)Directory for temporary files,这里设置临时文件路径。?
? ? ? ? ? 至于Window->Preferences->Java->JadClipse目录下的Debug,Directives, ? ? ? ? ? Formatting,Misc目录中的参数设置,我也没去研究,有兴趣的可以研究下。?
6、注意:安装完成后,myeclipse没有自动将JadClipse Class File Viewer设置成class文件的缺省打开方式,设置方法如下:
? ? ?在Eclipse的Windows—> Perference—>General->Editors->File Associations中修改“*.class”默认关联的编辑器为“JadClipse Class File Viewer”。
7、设置完成,找一个jar包中的*.class文件,myeclipse将自动反编译?