Notepad++查看⼆进制⽂件
看了很多⽹上的教程,使⽤Notepad++查看⼆进制⽂件,尝试以后发现和现在的版本不⼀样,没法正常使⽤。
⾃⼰经过尝试发现了现在能够使⽤的⽅法,在当前最新版本下可以正常使⽤。版本号应该是7.⼏,没注意看。
点击插件,然后点击 Converter这个插件,这个插件就是查看⼆进制数据的插件
点击Edit Configuration File,回答开⼀个converter.ini⽂件,⽤于配置查看⼆进制⽂件的
其中
insertSpace=0 是设置每个byte之间插⼊空格数⽬,建议设置为1,⽅便查看
uppercase=1 设置16进制时(a-f)按⼤写还是⼩写显⽰,1是⼤写显⽰,0是⼩写显⽰
notepad++nbCharPerLine=16设置⼀⾏显⽰的字节数,默认16个字节。
; This section contains the paremters for command ASCII -> Hex
; If you modify directly this file, please restart your Notepad++ to take effect.
; * insertSpace: this parameter allows you to insert a white space between the generated hex codes. Set the value to 1 to enable it, 0 otherwise.
; * uppercase: this parameter allows you to make a-f in UPPERCASE (ie. A-F). Set the value to 1 to enable it , 0 otherwise.
; * nbCharPerLine:this parameter allows you to break line. The value you set is the number of ascii character per line. Set the value from 0 to whatever you want. [ascii2Hex]
insertSpace=0
uppercase=1
nbCharPerLine=16
使⽤说明,通过这个插件可以把ASCII码转为16进制显⽰,也可以把16进制转为ASCII显⽰
新建⼀个⽂档,内容填充为hello word
当前状态是按ASCII码正常显⽰的,⾸先全选所有⽂字,然后依次点击插件 > Converter > ASCII->HEX就把hello word转化为了16进制显⽰
⼗六进制转ASCII码显⽰也类似,⾸先全选16进制码,然后依次点击: 插件 > Converter > HEX->ASCII就把上图中的16进制码转化为了ASCII码显⽰。
Notepad++现在好像是默认安装这个插件的,如果没有,可以点击 插件 > 插件管理 ,然后查这个插件,勾选后,安装
使⽤Notepad++查看⼆进制⽂件,只需要把⽂件使⽤Notepad++打开,此时应该显⽰的是乱码,不⽤担⼼,因为默认是按照ASCII解析显⽰的,只需要ctrl+a, 全选⽂件内容,然后依次点击插件 > Converter > ASCII->HEX,就能够按⼆进制查看⽂件内容了。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论