使用反编译得到jfreechart的demo源代码

本文详细介绍如何通过Jad工具反编译JFreeChart-1.0.14-demo.jar包中的.class文件来获取源码。首先需要安装并配置好JDK环境变量,接着使用jar命令解压指定文件,最后下载并设置Jad,运行特定命令即可完成反编译工作。
摘要由CSDN通过智能技术生成

1)首先,你必须安装有JDK,并且配置好了环境变量。。。至于配置,不多说,自己google。然后在cmd进入你的jfreechart-1.0.14-demo.jar所在文件夹,输入
jar -xvf jfreechart-1.0.14-demo.jar
如果对-xvf不懂得可以用 输入jar查看
2)下载jad的软件,到http://www.varaneckas.com/jad下载一个,解压缩jad.exe 复制到jdk的bin文件夹下面,输入

jad -o -r -sjava -dsrc demo/**/*.class

This command decompiles all .class files located in all subdirectories of 'demo' and creates output files in subdirectories of 'src' according to package names of classes. For example, if file 'demo/a/b/c.class' contains class 'c' from package 'a.b', then output file will have a name 'src/a/b/c.java'.

Note the use of the "two stars" wildcard ('**') in the previous command. It is handled by Jad rather than the command shell, so on UNIX the last argument should be single-quoted:

jad -o -r -sjava -dsrc 'demo/**/*.class

然后,在src文件夹下面,你会有意想不到的惊喜。。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值