jad反编译工具的使用

2024-02-21 20:58
文章标签 工具 使用 反编译 jad

本文主要是介绍jad反编译工具的使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Jad调用参数如下:

Usage:    jad [option(s)] <filename(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 <dir> - 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>  - split strings into pieces of max <num> chars (splitstr)-lnc     - output original line numbers as comments (lnc)-lradix<num>- display long integers using the specified radix-nl      - split strings on newline characters (splitstr)-noconv  - don't convert Java identifiers into valid ones (noconv)-nocast  - don't generate auxiliary casts-noclass - don't convert .class operators-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-nofd    - don't disambiguate fields with the same names (nofldis)-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>- prefix for all packages in generated source files-pc <pfx>- prefix for classes with numerical names (default: _cls)-pe <pfx>- prefix for unused exception names (default: _ex)-pf <pfx>- prefix for fields with numerical names (default: _fld)-pi<num> - pack imports into one line using .* (packimports)-pl <pfx>- prefix for locals with numerical names (default: _lcl)-pm <pfx>- prefix for methods with numerical names (default: _mth)-pp <pfx>- prefix for method parms with numerical names (default:_prm)-pv<num> - pack fields with the same types into one line (packfields)-r       - restore package directory structure-radix<num>- display integers using the specified radix (8, 10, or 16)-s <ext> - output file extension (default: .jad)-safe    - generate additional casts to disambiguate methods/fields-space   - output space between keyword (if, while, etc) and expression-stat    - show the total number of processed classes/methods/fields-t<num>  - use <num> spaces for indentation (default: 4)-t       - use tabs instead of spaces for indentation-v       - show method names while decompiling-8       - convert Unicode strings into ANSI strings (ansi)-&       - redirect STDERR to STDOUT
 

 

部分参数解释如下:

-8:     把Unicode编码的字符转换成ASCII输出,这样程序中的中文就会原样输出,而不是令人费解的uxxxx这种形式
-nl:     把字符串按照
切分输出,这样很长的字符串也不至于都放在一行,增强了可读性。

JAVA手机网[www.cnjm.net]

-ff:     把数据成员放在方法之前,这样就符合大家写程序的习惯了
-space:     在if, while等关键字和表达式之间加入空格,这是java的良好编程风格
-nonlb:     不在开大括号(也就是左大括号)前加回车,这是大部分java程序员的习惯风格,大家可以根据自己的习惯选用
经过这样的配置,jad输出的java代码几乎跟手写的没有什么两样

 

 

具体我的示例如下:

在DOS下进入jad目录后,敲入:

D:\My Document\download\jad>jad -d  D:\java -ff -nl -space -8 -nonlb -r -s java  E:\vbao\WEB-INF\classes\com\sztelecom\vbao\**\*.class

 

 

 

这篇关于jad反编译工具的使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/733046

相关文章

Java中使用Java Mail实现邮件服务功能示例

《Java中使用JavaMail实现邮件服务功能示例》:本文主要介绍Java中使用JavaMail实现邮件服务功能的相关资料,文章还提供了一个发送邮件的示例代码,包括创建参数类、邮件类和执行结... 目录前言一、历史背景二编程、pom依赖三、API说明(一)Session (会话)(二)Message编程客

C++中使用vector存储并遍历数据的基本步骤

《C++中使用vector存储并遍历数据的基本步骤》C++标准模板库(STL)提供了多种容器类型,包括顺序容器、关联容器、无序关联容器和容器适配器,每种容器都有其特定的用途和特性,:本文主要介绍C... 目录(1)容器及简要描述‌php顺序容器‌‌关联容器‌‌无序关联容器‌(基于哈希表):‌容器适配器‌:(

使用Python实现高效的端口扫描器

《使用Python实现高效的端口扫描器》在网络安全领域,端口扫描是一项基本而重要的技能,通过端口扫描,可以发现目标主机上开放的服务和端口,这对于安全评估、渗透测试等有着不可忽视的作用,本文将介绍如何使... 目录1. 端口扫描的基本原理2. 使用python实现端口扫描2.1 安装必要的库2.2 编写端口扫

使用Python实现操作mongodb详解

《使用Python实现操作mongodb详解》这篇文章主要为大家详细介绍了使用Python实现操作mongodb的相关知识,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、示例二、常用指令三、遇到的问题一、示例from pymongo import MongoClientf

SQL Server使用SELECT INTO实现表备份的代码示例

《SQLServer使用SELECTINTO实现表备份的代码示例》在数据库管理过程中,有时我们需要对表进行备份,以防数据丢失或修改错误,在SQLServer中,可以使用SELECTINT... 在数据库管理过程中,有时我们需要对表进行备份,以防数据丢失或修改错误。在 SQL Server 中,可以使用 SE

使用Python合并 Excel单元格指定行列或单元格范围

《使用Python合并Excel单元格指定行列或单元格范围》合并Excel单元格是Excel数据处理和表格设计中的一项常用操作,本文将介绍如何通过Python合并Excel中的指定行列或单... 目录python Excel库安装Python合并Excel 中的指定行Python合并Excel 中的指定列P

基于Go语言实现一个压测工具

《基于Go语言实现一个压测工具》这篇文章主要为大家详细介绍了基于Go语言实现一个简单的压测工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录整体架构通用数据处理模块Http请求响应数据处理Curl参数解析处理客户端模块Http客户端处理Grpc客户端处理Websocket客户端

浅析Rust多线程中如何安全的使用变量

《浅析Rust多线程中如何安全的使用变量》这篇文章主要为大家详细介绍了Rust如何在线程的闭包中安全的使用变量,包括共享变量和修改变量,文中的示例代码讲解详细,有需要的小伙伴可以参考下... 目录1. 向线程传递变量2. 多线程共享变量引用3. 多线程中修改变量4. 总结在Rust语言中,一个既引人入胜又可

golang1.23版本之前 Timer Reset方法无法正确使用

《golang1.23版本之前TimerReset方法无法正确使用》在Go1.23之前,使用`time.Reset`函数时需要先调用`Stop`并明确从timer的channel中抽取出东西,以避... 目录golang1.23 之前 Reset ​到底有什么问题golang1.23 之前到底应该如何正确的

详解Vue如何使用xlsx库导出Excel文件

《详解Vue如何使用xlsx库导出Excel文件》第三方库xlsx提供了强大的功能来处理Excel文件,它可以简化导出Excel文件这个过程,本文将为大家详细介绍一下它的具体使用,需要的小伙伴可以了解... 目录1. 安装依赖2. 创建vue组件3. 解释代码在Vue.js项目中导出Excel文件,使用第三