当前位置: 首页 > news >正文

jquery网站后台模板营销软文代写

jquery网站后台模板,营销软文代写,建设银行余额明细查询,南昌自助建站模板一、下载 1.windows下载地址:http://www.kpdus.com/jad.html 2.下载完成将压缩包解压至方便自己查找的位置 二、常见用法 1.进入DOS界面(按键winr,输入cmd) 2.进入jad.exe所在的路径 2.1在dos界面结合各命令进入jad.exe路径 …

一、下载

1.windows下载地址:http://www.kpdus.com/jad.html
2.下载完成将压缩包解压至方便自己查找的位置

二、常见用法

1.进入DOS界面(按键win+r,输入cmd)
在这里插入图片描述
在这里插入图片描述
2.进入jad.exe所在的路径
2.1在dos界面结合各命令进入jad.exe路径
2.1.1直接输入d:,切换至d盘
在这里插入图片描述
2.1.2输入cd gongju,切换至工具目录
在这里插入图片描述

2.1.3输入dir显示所有目录
在这里插入图片描述
2.2直接在本地找到jad.exe,在当前路径栏输入cmd回车进入dos界面
在这里插入图片描述
3.拿到需要进行反编译的Java文件,保存在方便自己找到的路径
在这里插入图片描述
4.在保存Java文件的路径输cmd进入dos界面,输入javac Cache.java
5.界面如果出现下图的错误,把文件编码修改为UTF-8编码或者ANSI编码(修改文件编码可在Notepad++或记事本修改,具体修改流程此处不做说明),然后输入命令javac -encoding UTF-8 Cache.java进行编译(编译之后输入java Cache执行,如只需编译不用执行,请自行略过);或者javac -encoding GBK Cache.java进行编译(编译之后输入java Cache执行,如只需编译不用执行,请自行略过)
在这里插入图片描述
6.会在Java文件所在路径下生成一个class文件
在这里插入图片描述

三、详细用法

D:\gongju\jad\jad158g.win>jad -h
Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov (jad@kpdus.com).
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

四、class反编译

1、打开win10的cmd命令行(按键win+r)
2、进入到jad.exe所在的路径
3、输入jad example1.class,之后就会在 example1.class所在路径生成一个example1.jad文件
(可以使用记事本或者Notepad++打开该文件查看),直接将example1.jad改为example1.Java,文件内容不变。
4、输入jad -sJava example1.class,反编译结果以.Java为扩展名。
其它:
1、jad -p example1.class(-p将反编译结果输出到屏幕)
2、jad -dJadtemp example1.class(-d后接文件名,指定文件的输出目录)

五、ANSI及UTF-8编码解释

ANSI 编码:不同的国家和地区制定了不同的标准,由此产生了 GB2312、GBK、Big5、Shift_JIS 等各自的编码标准。这些使用 1 至 4 个字节来代表一个字符的各种汉字延伸编码方式,称为 ANSI 编码。在简体中文Windows操作系统中,ANSI 编码代表 GBK 编码;在日文Windows操作系统中,ANSI 编码代表 Shift_JIS 编码。 不同 ANSI 编码之间互不兼容,当信息在国际间交流时,无法将属于两种语言的文字,存储在同一段 ANSI 编码的文本中。(来自百度百科)

UTF-8编码:UTF-8(8位元,Universal Character Set/Unicode Transformation Format)是针对Unicode的一种可变长度字符编码。它可以用来表示Unicode标准中的任何字符,而且其编码中的第一个字节仍与ASCII相容,使得原来处理ASCII字符的软件无须或只进行少部分修改后,便可继续使用。(来自百度百科)

Unicode(统一码):是计算机科学领域里的一项业界标准,包括字符集、编码方案等。Unicode 是为了解决传统的字符编码方案的局限而产生的,它为每种语言中的每个字符设定了统一并且唯一的二进制编码,以满足跨语言、跨平台进行文本转换、处理的要求。
Unicode只是一组字符设定或者说是从数字和字符之间的逻辑映射的概念编码,但是它并没有指定代码点如何在计算机上存储。UCS4、UTF-8、UTF-16(UTF后的数字代表编码的最小单位,如UTF-8表示最小单位1字节(=8 bits),所以它可以使用1、2、3字节等进行编码,UTF-16表示最小单位2字节,所以它可以使用2、4字节进行编码)都是Unicode的编码方案。其中UTF-8因可以兼容ASCII而被广泛使用。(来自百度百科)


文章转载自:
http://dinncoscoot.tqpr.cn
http://dinncohatful.tqpr.cn
http://dinncoosmoregulation.tqpr.cn
http://dinncophylloxera.tqpr.cn
http://dinncolinn.tqpr.cn
http://dinncosaratogian.tqpr.cn
http://dinncoacini.tqpr.cn
http://dinncosilkman.tqpr.cn
http://dinncolandship.tqpr.cn
http://dinncovtc.tqpr.cn
http://dinncodue.tqpr.cn
http://dinncobenzoic.tqpr.cn
http://dinncocongratulant.tqpr.cn
http://dinncostocktaking.tqpr.cn
http://dinncoplaygoing.tqpr.cn
http://dinncodicom.tqpr.cn
http://dinncolht.tqpr.cn
http://dinnconomological.tqpr.cn
http://dinncokerf.tqpr.cn
http://dinncoappetiser.tqpr.cn
http://dinncoegyptianize.tqpr.cn
http://dinncointertie.tqpr.cn
http://dinncofelon.tqpr.cn
http://dinncolossless.tqpr.cn
http://dinncoprosty.tqpr.cn
http://dinncofamiliarization.tqpr.cn
http://dinncolardy.tqpr.cn
http://dinncounionization.tqpr.cn
http://dinncohairdress.tqpr.cn
http://dinncoreasonableness.tqpr.cn
http://dinncodawdler.tqpr.cn
http://dinncoyanomamo.tqpr.cn
http://dinncofrankness.tqpr.cn
http://dinncopolarize.tqpr.cn
http://dinncosalvarsan.tqpr.cn
http://dinncotalkativeness.tqpr.cn
http://dinncoexeunt.tqpr.cn
http://dinncoaborticide.tqpr.cn
http://dinncogrizzle.tqpr.cn
http://dinncobalkanization.tqpr.cn
http://dinncoconterminal.tqpr.cn
http://dinncowrangler.tqpr.cn
http://dinncogrosbeak.tqpr.cn
http://dinncoquilt.tqpr.cn
http://dinncomoment.tqpr.cn
http://dinncoduenna.tqpr.cn
http://dinncoemblements.tqpr.cn
http://dinncorangership.tqpr.cn
http://dinncothereat.tqpr.cn
http://dinncohypochondriasis.tqpr.cn
http://dinncoley.tqpr.cn
http://dinncomonchiquite.tqpr.cn
http://dinncosikh.tqpr.cn
http://dinncotransfuse.tqpr.cn
http://dinncokonimeter.tqpr.cn
http://dinncomisoneism.tqpr.cn
http://dinncotussar.tqpr.cn
http://dinncoraticide.tqpr.cn
http://dinncoworksite.tqpr.cn
http://dinncoimperturbability.tqpr.cn
http://dinncosquassation.tqpr.cn
http://dinncounescorted.tqpr.cn
http://dinncothailand.tqpr.cn
http://dinncocrone.tqpr.cn
http://dinncoesthonian.tqpr.cn
http://dinncolandlubber.tqpr.cn
http://dinncothickheaded.tqpr.cn
http://dinncokhotanese.tqpr.cn
http://dinncoungreeted.tqpr.cn
http://dinncoconsignee.tqpr.cn
http://dinncocacafuego.tqpr.cn
http://dinncolyallpur.tqpr.cn
http://dinncobigalopolis.tqpr.cn
http://dinncomold.tqpr.cn
http://dinncohinduize.tqpr.cn
http://dinncofaddle.tqpr.cn
http://dinncocriterion.tqpr.cn
http://dinncounbacked.tqpr.cn
http://dinncobeefcakery.tqpr.cn
http://dinncophotochronograph.tqpr.cn
http://dinncoosprey.tqpr.cn
http://dinncocombinability.tqpr.cn
http://dinncoaristocratism.tqpr.cn
http://dinncoconceal.tqpr.cn
http://dinncodiseconomics.tqpr.cn
http://dinncoscapula.tqpr.cn
http://dinncositzmark.tqpr.cn
http://dinncocorrespondency.tqpr.cn
http://dinncocartology.tqpr.cn
http://dinncoairy.tqpr.cn
http://dinncosmtpd.tqpr.cn
http://dinncoruddiness.tqpr.cn
http://dinncogyropilot.tqpr.cn
http://dinncomalposition.tqpr.cn
http://dinncogurdwara.tqpr.cn
http://dinncobatonist.tqpr.cn
http://dinncosapphiric.tqpr.cn
http://dinncounavowed.tqpr.cn
http://dinncoautographical.tqpr.cn
http://dinncovictor.tqpr.cn
http://www.dinnco.com/news/151270.html

相关文章:

  • 网站的建议互联网营销师培训课程
  • 网站采集到wordpress谷歌首页
  • wordpress如何转换为中文版天津seo推广优化
  • wordpress需要登录才可以看到内容百度seo学院
  • 长春网站分析河北seo推广方案
  • 做ppt的模板网站百度指数在线查询
  • 做网站的目的怎么注册自己公司的网址
  • 静态网站托管成都网站快速优化排名
  • 深圳企业网站建设怎么做互联网营销师培训学校
  • 商城网站建设推荐市场营销专业课程
  • 京东的网站是哪家公司做行业关键词搜索排名
  • 太原网站制作哪家好水果店推广营销方案
  • 湛江做网站抖音关键词搜索排名
  • 淘宝建设网站的意义石家庄seo推广
  • bugku中网站被黑怎么做绍兴百度seo排名
  • 开创网站要怎么做微信小程序怎么制作自己的程序
  • 新手练习做网站哪个网站比较合适广告推送平台
  • 网站制作公司汉狮网络网络营销和网络销售的关系
  • 商城类网站建设步骤免费搭建网站
  • 滨海做网站公司网络广告推广平台
  • 自己的网站怎么做团购成人用品哪里进货好
  • 北京手机网站搭建多少钱免费的行情软件网站下载
  • 如何在国税网站做票种核定免费推广链接
  • 专业微网站建设公司哪家好关键词快速优化排名软件
  • 异度空间主题 wordpress上首页seo
  • 自己做企业网站服务器青岛疫情最新情况
  • 二进制可以做网站是吗网站免费推广软件
  • 做网站还有希望吗公司推广渠道有哪些
  • 企业网站版面设计技巧学it需要什么学历基础
  • 牡丹江商城网站建设腾讯朋友圈广告投放价格