MyEclipse配置反编译插件

Myeclipse6.5中配置反编译工具
1.将net.sf.jadclipse_3.3.0.jar放在C:\Program Files\MyEclipse 6.5\eclipse\plugins目录下;

2.将Jad.exe放在C:\Program Files\Java\jdk1.6.0_06\bin目录下;

3.然后重启Myeclipse后,打开window--->Preferences-->Java-->JadClipse
把Jad.exe的路径C:\Program Files\Java\jdk1.6.0_06\bin\Jad.exe放在Path to decompiler中,并选中Use Eclipse code formatter复选框;在JadClipse-->Misc视图中,选中Convert Unicode strings into ANSI strings复选框。

4.最后点Ok就轻松搞定啦。


Myeclipse 8.6安装反编译工具插件 jad (net.sf.jadclipse_3.3.0.jar):
1 把 【net.sf.jadclipse_3.3.0.jar】jar包放到myeclipse插件目录 即放置到【dropins】目录;

2 把 jad.exe 放置到任意目录
本实例,存放目录为:【F:\test\jad.exe 】。 这很重要,接下来的设置需要用到。

3 在myeclipse 设置 jadclipse
 

   ①打开myeclipse 应用程序 找到菜单:【window==>preference==>java==>jadclipse】
    ②设置【 path to decompiler】 为: F:\test\jad.exe
   ③设置【directory for temporary files】 为:G:\software\tmp   (路径可以自行定义,存放反编译li)
    ④在【==>jadclipse==> debug】 中勾选:output original line numbers as comments (显示行号注释,以便调试等等)
    ⑤在【==>jadclipse==> Misc】中勾选:covert unicode strings into ANSI strings (以便能正确识别中文,防止乱码)

4 点击【apply】 ,点击【ok】,就可以使用了
原文地址:https://www.cnblogs.com/ubersexual/p/3007380.html