jadclipse插件网站: http://jadclipse.sourceforge.net/
一、下载:
下载插件:
下载jadclipse_3.1.0.jar版本,该版本支持eclipse3.1M6以上
下载jadclipse_3.2.0.jar版本,该版本支持eclipse3.2M3和eclipse3.2M4.
下载jadclipse_3.2.2.jar版本,该版本支持eclipse3.2M5以上。
二、安装:
方法1、直接将jadclipse_3.1.0.jar复制到%ECLIPSE_HOME%\plugins目录下。cmd -> %
ECLIPSE_HOME% ->eclipse -clean
方法2、使用link方式安装,建立E:\eclipse3.1plugins\jadclipse3.1.0
\eclipse\plugins的目录结构,将jadclipse_3.1.0.jar放到plugins目录下面(注:其中E:
\eclipse3.1plugins为你自己定义的一个专门放置插件的目录)。再在%ECLIPSE_HOME%
\links目录下面建立一个jadclipse3.1.0.link文件(该文件名随便取,保证后缀为。link就
OK)。文件里面内容为:path=E:\\eclipse3.1plugins\\jadclipse3.1.0.启动eclipse,打
开Window->Preferences->Java->JadClipse,如果没有找到JadClipse,检查插件安装的版本
是否与你安装的eclipse版本对应。
我安装的eclipse是:eclipse3.1.2
三、设置参数:
启动eclipse,打开:Window->Preferences->Java->JadClipse.
1、Path to decompiler,这里设置反编译工具jad的全路径名,比如:%JAVA_HOME%
\bin\jad.exe.
2、Directory for temporary files,这里设置临时文件路径。
至于Window->Preferences->Java->JadClipse目录下的Debug,Directives,Formatting
,Misc目录中的参数设置,就不罗嗦。
四、安装完成后,eclipse自动将JadClipse Class File Viewer设置成class文件的缺省
打开方式。如果没有默认,可以在Eclipse的Windows——> Perference——>General-
>Editors->File Associations中修改“*.class”默认关联的编辑器为“JadClipse Class
File Viewer”。设置完成后,双击*.class文件,eclipse将自动反编译。
注:对于存在源代码的类,它不会强行反编译,也就是说它还是会用eclipse自带的
Class File Viewer查看class文件。
错误 代码
- 错误:
-
- Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov (kpdus@yahoo.com).
- Usage: jad [option(s)]
- Options: -a - generate JVM instructions as comments (annotate)
- -af - output fully qualified names when annotating
- -b - generate redundant braces (braces)
- -clear - clear all prefixes, including the default ones
- -d - directory for output files
- -dead - try to decompile dead parts of code (if there are any)
- -dis - disassembler only (disassembler)
- -f - generate fully qualified names (fullnames)
- -ff - output fields before methods (fieldsfirst)
- -i - print default initializers for fields (definits)
- -l<num></num> - split strings into pieces of max <num></num> chars (splitstr)
- -lnc - output original line numbers as comments (lnc)
- -nl - split strings on newline characters (splitstr)
- -noconv - don't convert Java identifiers into valid ones (noconv)
- -nocast - don't generate auxiliary casts
- -nocode - don't generate the source code for methods
- -noctor - suppress the empty constructors
- -nodos - turn off check for class files written in DOS mode
- -noinner - turn off the support of inner classes
- -nolvt - ignore Local Variable Table entries (nolvt)
- -nonlb - don't insert a newline before opening brace (nonlb)
- -o - overwrite output files without confirmation
- -p - send all output to STDOUT (for piping)
- -pa
<pfx></pfx>
- prefix for all packages in generated source files
- -pc
<pfx></pfx>
- prefix for classes with numerical names (default: _cls)
- -pe
<pfx></pfx>
- prefix for unused exception names (default: _ex)
- -pf
<pfx></pfx>
- prefix for fields with numerical names (default: _fld)
- -pi<num></num> - pack imports into one line using .* (packimports)
- -pl
<pfx></pfx>
- prefix for locals with numerical names (default: _lcl)
- -pm
<pfx></pfx>
- prefix for methods with numerical names (default: _mth)
- -pp
<pfx></pfx>
- prefix for method parms with numerical names (default:_prm)
- -pv<num></num> - pack fields with the same types into one line (packfields)
- -r - restore package directory structure
- -s <ext></ext> - output file extension (default: .jad)
- -space - output space between keyword (if, while, etc) and expression
- -stat - show the total number of processed classes/methods/fields
- -t<num></num> - use <num></num> spaces for indentation (default: 4)
- -t - use tabs instead of spaces for indentation
- -v - show method names while decompiling
-
-
-
-
-
-
-
-
-
-
-
-
- 解决方法:下载Jad(我附带了一个),放在jre\lib\下面,或者设置Jad的全路径名
反编译工具jad简单用法
以下假设jad.exe在c:\java目录下
一、基本用法
Usage: jad [option(s)]
直接输入类文件名,且支持通配符,如下所示。
c:\java\>jad example1.class
c:\java\>jad *.class
结果是将example1.class反编译为example1.jad。将example1.jad改为example1.java即得源
文件。
二、Option -o
不提示,覆盖源文件
三、Option -s
c:\java\>jad -sjava example1.class
反编译结果以.java为扩展名。
四、Option -p
将反编译结果输出到屏幕
c:\java\>jad -p example1.class
将反编译结果重定向到文件
c:\java\>jad -p example1.class>example1.java
五、Option -d
指定反编译的输出文件目录
c:\java\>jad -o -dtest -sjava *.class
分享到:
相关推荐
JadClipse是集成开发环境(IDE)MyEclipse的一个扩展,用于查看和理解Java字节码,这对于调试、学习或逆向工程代码非常有用。"net.sf."前缀表明它遵循SourceForge的命名规范,这是一个开源项目托管平台。 描述中...
1. **下载JadClipse插件**:你可以从官方或者可信的第三方网站下载最新版本的JadClipse插件,文件名可能如"jadclipse.zip"。 2. **解压JadClipse**:将下载的.zip文件解压到一个本地文件夹,通常包含一个名为`...
三、设置jad的可执行文件路径以及生成的临时文件路径:::打开Eclipse-->Window-->Prefrences-->java-->Jadclipse-->第一个Path to decompiler设置到jad.exe(比如E:\jad\jad.exe);;第二个Directory for temporary ...
在myeclipse中,当需要查看某个类的源代码而没有源码包时,右键点击该类,选择"Open Declaration"或"F3"键,jadclipse会尝试反编译对应的.class文件并显示源代码。尽管反编译结果可能与原始源代码略有差异,但大多数...
eclipse 反编译插件 java工具JadClipse 将JadClipse插件(net.sf.jadclipse_3.3.0.jar)拷贝到{EclipseHome}/plugins文件夹下(如C:\Program F\eclipse-jee-kepler-R-win32-x86_64\eclipse\plugins)。JAD 解压到...
4. 点击"Add..."按钮,输入一个名称(例如jadclipse),然后在URL栏中输入jadclipse的更新站点(如果找不到官方站点,可以选择上传到第三方平台的链接)。 5. 完成添加后,关闭Preference窗口,再次打开“Window” -...
**标题:“JadClipse+Jad”** **描述**:在IT领域,"JadClipse+Jad"指的是将Jad工具与Eclipse集成的开发环境。这里提到的自测环境是64位的Windows 7操作系统,使用的Eclipse版本为4.3.0(也称为Kepler)。Eclipse是...
3. 在"Name"字段输入jadClipse的名称,例如"jadClipse Plugin",在"Location"字段中,输入jadClipse插件的本地路径,即刚才解压的文件夹路径。如果jadClipse是以.zip文件下载的,可以使用"Archive..."选项来指定.zip...
在安装jadclipse时,需要将jad.exe放置在Eclipse的plugins目录下,或者指定其路径,以便插件能够调用它进行反编译操作。jad.exe的版本应与jadclipse插件相匹配,以确保兼容性和稳定性。 安装jadclipse插件的步骤...
jadclipse_3.3.0是Jadclipse的一个版本,提供了与Eclipse的集成,使得用户无需离开IDE就能进行反编译操作。jad.exe是JAD(Java Decompiler)的主要执行文件,它负责将字节码转换回接近原始源代码的形式。...
Jadclipse是一款针对Eclipse集成开发环境的反编译插件,专为Java开发者设计,能够帮助用户查看和理解已编译的.class文件的源代码。标题中的"jadclipse_3.3.0.jar"是该插件的核心组件,用于集成到Eclipse 3.3版本中。...
Eclipse反编译插件JadClipse是一个强大的开发工具,专为Eclipse IDE设计,使得程序员能够在不拥有源代码的情况下查看和理解Java字节码。这个插件整合了JAD(Java反汇编器)的功能,使得开发者可以对已编译的.class...
Jadclipse3.3是一款专为MyEclipse10设计的反编译插件,它能够帮助开发者查看Java字节码并进行反编译,从而理解类文件的内部结构和实现细节。这款插件在开发过程中尤其有用,尤其是当你需要查看第三方库的源代码而...
方法2、使用link方式安装,建立E:\eclipse3.3plugins\jadclipse3.3.0\eclipse\plugins的目录结构,将jadclipse_3.3.0.jar放到plugins目录下面(注:其中E:\eclipse3.3plugins为你自己定义的一个专门放置插件的目录...
第六步:window-> Editors->File Associations ->*.class-> JadClipse Class File Viewer (default)把*.class打开方式设成jadclipse默认打开 提示:如果需要批量反编译可以参照...
项目名称"jadclipse"是"JAD"和"Eclipse"的组合,表明它是专门为Eclipse IDE设计的一个插件。 标签 "jadclipse" 明确地标识了我们讨论的主题,即JAD与Eclipse集成的插件。 压缩包中的两个文件: 1. `jad.exe`:这是...
"eclipse使用jad+jadclipse反编译方法.rar"是一个压缩包,包含了帮助Eclipse用户进行反编译的工具和指南。本文将详细介绍如何利用JAD和Jadclipse在Eclipse集成开发环境中实现反编译。 **JAD(Java Decompiler)** ...
JadClipse是一款集成在Eclipse开发环境中的反编译插件,主要功能是帮助开发者查看Java字节码并将其转化为可读的源代码。在Java编程中,有时我们需要查看已编译类文件的源代码,但原始源码可能丢失或者不在手边,这时...