jadclipse

使用JadClipse反编译代码

最后都变了- 提交于 2020-08-12 09:50:24
说明:当我们需要反编译jar 包或者查看 .class 类型文件时,我们首先会想到使用 jd-gui.exe 工具,但是在 eclipse 中查看时总觉得这样做很繁琐,以下步骤简述如何在 eclipse 中查看 .class 类型和 *.class without source 类型文件。 下载插件包 下载地址为: http://sourceforge.jp/projects/sfnet_jadclipse/releases/ ,如图一所示: 图一 根据不同的eclipse 版本下载不同版本的 jar 包,我这里下载的是 net.sf.jadclipse_3.3.0.jar 。 安装插件包 将 net.sf.jadclipse_3.3.0.jar拷贝到 eclipse 安装目录 /plugins 文件夹下,将 jad.exe 拷贝到任意目录,比如我的目录为: D:\Users\jd-gui\jad.exe ,关于 jad 的使用方式参考博文: 反编译工具 jad 的使用 修改 eclipse 启动方式,如图二所示:在目标后面增加“ -clean ”强制重新载入插件。 图二 启动 eclipse ,依次打开 Window->Preferences->Java ,修改 Path to decompiler 的值,如图三所示: 图三 依次打开 Window->Preferences-

Cannot run program "jad"解决方法

痴心易碎 提交于 2020-05-01 09:00:05
Cannot run program "jad"解决方法 错误: Cannot run program "D:\jad\work\jad.exe" (in directory "D:\jad\work\1428547596364" ) 当我们在装eclispe反编译工具遇到上诉错误的时候,我们需要配置在: windows->preferences-> java->jadClipse 配置jad的路径 如下图所示 jad的链接: http://pan.baidu.com/s/1c20vCwo 来源: oschina 链接: https://my.oschina.net/u/4000302/blog/4260348

eclipse反编译插件jad安装

落花浮王杯 提交于 2019-12-29 22:26:15
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 获取net.sf.jadclipse_3.3.0.jar并进行配置: 1,网上下载资源,下载后将net.sf.jadclipse_3.3.0.jar放置到eclipse\plugins目录下, 获取jad.exe执行文件并进行配置: 1,将jad解压到,放到指定目录 2,打开eclipse-->>菜单Window-->>preferences-->>java -->>JadClipse 3,配置jad路径和临时文件路径 Path to decompiler:d:\eclipse-jee-indigo-SR2-win32-x86_64\jad.exe Directory for temporary files:d:\eclipse-jee-indigo-SR2-win32-x86_64\temJad jad配置好后为默认*.class文件类型打开方式,如果不是的话可到General-->>Editors-->>File Associatior里设置 来源: oschina 链接: https://my.oschina.net/lion1220/blog/3149339

JADClipse not working with Eclipse 3.6

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-05 23:33:27
问题 Does Jadclipse work on Eclipse 3.6 ? I have installed Jadclipse 3.3.0 on my Eclipse 3.6 by copying the jar into the plugins directory and restated eclipse. Now I have the jadclipse menu under Windows->Preferences but when trying to de-compile any class it simply does not de-compile. I get the usual eclipse screen saying the source is unavailable. There are no errors in the Error Log . Any idea? 回答1: I eventually found the answer here. Running eclipse with -clean switch and setting the file

What would be a more accurate decompiler than jad for Eclipse to get rid of <-MISALIGNED ->?

强颜欢笑 提交于 2019-12-05 19:33:16
I have used jad for many years, most of these with the Jadclipse plugin to eclipse which makes it quite usable. Especially with the "Align code for debugging" which allows you to see the decompiled code for any line in a stack trace. Very nice. Unfortunately I've seen more and more that the <- MISALIGNED -> comment sneaks in, which is most likely because jad expects the classfile to be in order which clearly is not the case for the Java 6 runtime library. Hence when writing the file, and an instruction says "this is line 100" then 99 empty lines are written, and if then the next instruction

JADClipse not working with Eclipse 3.6

旧街凉风 提交于 2019-12-04 05:47:48
Does Jadclipse work on Eclipse 3.6 ? I have installed Jadclipse 3.3.0 on my Eclipse 3.6 by copying the jar into the plugins directory and restated eclipse. Now I have the jadclipse menu under Windows->Preferences but when trying to de-compile any class it simply does not de-compile. I get the usual eclipse screen saying the source is unavailable. There are no errors in the Error Log . Any idea? RonK I eventually found the answer here . Running eclipse with -clean switch and setting the file association between *.class and the jadclipse plug-in solved the problem. Set the JAD path correctly in

Eclipse 反编译插件 jadClipse

邮差的信 提交于 2019-11-27 17:48:42
反编译插件有 jdeclipse 和 jadeclipse。 (1) jdeclipse http://www.djjavadecompiler.com/ (2) jad + jadeclipse 下载 jadeclipse: http://sourceforge.net/projects/jadclipse/files/ 下载 net.sf.jadclipse_3.3.0.jar 后,复制到 eclipse主目录下的 plugin文件夹下,然后重启 eclipse。 下载 jad.exe: http://www.varaneckas.com/jad/ (从维基中找到的地址) 下载完成后,复制到任意路径 Window->Preferences->Java->JadClipse. 1、Path to decompiler,这里设置反编译工具jad的全路径名,下载jad.exe的全路径. 2、Directory for temporary files,这里设置临时文件路径。 至于Window->Preferences->Java->JadClipse目录下的Debug,Directives,Formatting,Misc目录中的参数设置,就不罗嗦。 安装完成后: 在Eclipse的视窗系统――> Perference――>General->Editors->File

在Eclipse中反编译Class文件完全详解

本小妞迷上赌 提交于 2019-11-27 17:48:22
Java 是开源的,是免费的,我们强烈鄙视所有不公开源代码的东东。比如,对 class 文件进行加密混淆的类文件,一般情况下,我们是看不到其源代码的。本文将对此进行详细阐述,说明如何随心所欲的反编译看源码,体验一下其中的乐趣。(本文最后面有相关资源下载) 目前在 Java 开发工具中, Eclipse 可谓是占据着绝对的优势,在平常使用中,大家都会有意无意的查看一下所调用 JAR 包的源代码,这时如果没有引入源文件的话,将会看不到结果。大象以 dom4j-1.6.1.jar 为例来进行说明,打开 demo 项目(请在 dom4j 分类中查找),找到 com.demo.database.DataBaseConnect 类,按住 Ctrl 键,再用鼠标点击 Element , 如图: dom4j 是开源的,可以在 sourceforge.net 下载到它的完整版,里面当然包含源代码。大象想说的是,在做开发的时候,需要用到大量的 JAR 包,你不可能每个都去 down 一个源码下来,而且我们用不到这么多的源码,只是在需要的时候,看下其中的代码,解决一时的问题。 大象通过查看网上其他人的研究成果再结合自己的分析,总结了一些经验,现在整合起来和大家分享一下。 1、安装 jadclipse 插件 选择插件时,本人曾经使用过网上评论非常好的 Jode 开发的 Eclipse 插件