[size=medium][color=darkred]使用Eclipse进行开发时,由于很多类是class文件,想看源码需要拷贝出来再反编译,严重影响开发速度,按以下方法进行设置,可以直接F3或者Ctrl+单击查看源码,甚至还能跟踪进源码中:
1.安装jad.exe、net.sf.jadclipse_3.3.0.jar
jad.exe拷贝到JRE的bin目录下,如d:\Java\jre1.5\bin
net.sf.jadclipse_3.3.0.jar拷贝到Eclipse下,如D:\leaf\eclipse\plugins目录下
2.启动Eclipse后,在Windows(窗口)-->Perference(首选项)-->Java下面应该会多出一个JadClipse目录,相关的设置可以在此修改配置
jadclipse:设置path to decompiler为jad.exe的全路径,如:d:\Java\jre1.5\bin\jad.exe;
Directory for temporary files中指定临时文件的路径,如:C:\Java\temp
3.在Eclipse的Windows-->Perference-->General->Editors->File Associations中修改“*.class”默认关联的编辑器为“JadClipse Class File Viewer”
4.安装完成,双击class文件,Eclipse将自动反编译了。 [/color][/size]
1.安装jad.exe、net.sf.jadclipse_3.3.0.jar
jad.exe拷贝到JRE的bin目录下,如d:\Java\jre1.5\bin
net.sf.jadclipse_3.3.0.jar拷贝到Eclipse下,如D:\leaf\eclipse\plugins目录下
2.启动Eclipse后,在Windows(窗口)-->Perference(首选项)-->Java下面应该会多出一个JadClipse目录,相关的设置可以在此修改配置
jadclipse:设置path to decompiler为jad.exe的全路径,如:d:\Java\jre1.5\bin\jad.exe;
Directory for temporary files中指定临时文件的路径,如:C:\Java\temp
3.在Eclipse的Windows-->Perference-->General->Editors->File Associations中修改“*.class”默认关联的编辑器为“JadClipse Class File Viewer”
4.安装完成,双击class文件,Eclipse将自动反编译了。 [/color][/size]