Eclipse 安装反编译插件

在用Myeclipse 或者是eclipse进行开发时候经常遇到这个问题。

File class editor source not found问题。原因很简单,就是因为这是一个源码包,相应的没有编辑器能够打开它。

首先,需要下载两个必须的插件包。

一个是:准备反编译需要的jad.exe

下载地址:http://varaneckas.com/jad/

二个是:反编译编辑器net.sf.jadclipse_3.3.0.jar

下载地址:http://sourceforge.net/projects/jadclipse/?source=dlp

步骤:

1. 将jad.exe 安装于jdk的安装位置.

2. 将net.sf.jadclipse_3.3.0.jar复制到eclipse\plugins目录下.(注意: 我使用的eclipse版本为4.4.1,使用网上的某些将jadclipse的jar包放在dropins目录中的方法,无法安装成功.此问题直接误导我的安装步骤,导致我浪费很多时间才找到问题所在.) (Myeclipse是放在dropins目录中)

3. 删除eclipse\configuration\org.eclipse.update文件.

  1. Restart eclipse.

5. 在eclipse中进入window>preferences>Java>JadClipse (在Java中看到JadClipse就说明插件安装成功了)

设置jad的可执行文件路径以及生成的临时文件路径.

Eclipse 安装反编译插件_第1张图片
image.png

在jadclipse-> debug勾选:output original line numbers as comments

在jadclipse->Misc勾选:covert unicode strings into ANSI strings

在windows->preference->General->Editors->File Association将 *.class文件类型默认打开方式设置为JadClipse Class File Viewer

将*.class without source文件类型默认打开方式设置为JadClipse Class File Viewer.

6. 最后,可以打开.class文件查看源码了

Eclipse 安装反编译插件_第2张图片
image.png

你可能感兴趣的:(Eclipse 安装反编译插件)