java反编译  打开class文件,我目前了解的有2种类型的软件:
一、在eclipse外部打开jar文件。
Java Decompiler.exe,主页JD home page: http://java.decompiler.free.fr ,该软件可以打开整个jar包,功能很强大。


二、在eclipse内部打开jar文件。
net.sf.jadclipse_3.3.0.jar、jad158g.win.zip,需要这两个文件。
准备工作:
1、下载jad.exe文件:http://www.varaneckas.com/jad
2、下载jadeclipse插件:http://sourceforge.net/projects/jadclipse/files/


安装如下:
1、将jadeclipse插件net.sf.jadclipse_3.3.0.jar 拷贝到myeclipse安装目录E:\MyEclipse 10.0\eclipse\myplugins\jad\eclipse\plugins目录下,并在目录E:\MyEclipse 10.0\eclipse\links下新建文件jad.link,内容如下path=E:\\MyEclipse 10.0\\eclipse\\myplugins\\jad\\ 


2、将jad.exe解压到指定目录。如:D:\tools 


3、在eclipse窗口下,点击Window > Preferences > Java > JadClipse > Path to Decompiler。(设置jad的绝对路径,如 D:\tools\jad\jad.exe)。Use Eclipse code formatter(overrides Jad formatting instructions)选项打勾,与格式化出来的代码样式一致。


4、在eclipse窗口下,点击Window > Preferences > Java > JadClipse > Misc,将Convert Unicode strings into ANSI strings选项打勾,避免反编译后可能出现的中文乱码。


5、重新启动myeclipse,eclipse自动将JadClipse Class File Viewer设置成class文件的缺省打开方式。如果没有默认,可以在Eclipse的Window > Preferences >General >Editors> File Associations中修改“*.class”默认关联的编辑器为“JadClipse Class File Viewer”。设置完成后,双击*.class文件,eclipse将自动反编译。