- 主题:现在还有哪些免费的软件可以打开查看二进制文件?
--
FROM 111.9.5.*
vscode装hexedit插件
--
FROM 111.198.57.*
有没有直接可用的绿色软件?
我用keil,不用vscode
【 在 eggcar 的大作中提到: 】
: vscode装hexedit插件
--
FROM 111.9.5.*
vim执行%!xxd
【 在 moonwalker 的大作中提到: 】
--
FROM 221.198.64.*
You can use the xxd command to transform a file in Vim to hex representation, doing
:%!xxd
: enters command-line mode, % matches whole file as a range, ! filters that range through an external command, xxd is that external shell command
Giving an output like this, this is split into octet count/line (octets per line may be changed with parameter -c on xxd command), hex representation, and text representation:
0000000: 5468 6973 2069 7320 6120 7465 7374 0a41 This is a test.A
0000010: 6e6f 7468 6572 206c 696e 650a 416e 6420 nother line.And
0000020: 7965 7420 616e 6f74 6865 720a yet another.
Once you make the changes (in the hex part), you can go back to text with -r command on xxd, so
:%!xxd -r
【 在 tgfbeta 的大作中提到: 】
: vim执行%!xxd
--
FROM 221.198.64.*
我用window环境的-_-||
【 在 tgfbeta 的大作中提到: 】
: vim执行%!xxd
--
FROM 111.9.5.*
HxD windows上最好的Hex编辑器。
HxD is a carefully designed and fast hex editor which, additionally to raw disk editing and modifying of main memory (RAM), handles files of any size.
【 在 moonwalker 的大作中提到: 】
--
修改:spadger FROM 222.90.31.*
FROM 222.90.31.*
确实好用,谢谢!
【 在 spadger 的大作中提到: 】
: HxD windows上最好的Hex编辑器。
: HxD is a carefully designed and fast hex editor which, additionally to raw disk editing and modifying of main memory (RAM), handles files of any size.
:
--
FROM 111.9.5.*
看起来不错
似乎UE要彻底退役了
【 在 spadger 的大作中提到: 】
: HxD windows上最好的Hex编辑器。
: HxD is a carefully designed and fast hex editor which, additionally to raw disk editing and modifying of main memory (RAM), handles files of any size.
:
--
FROM 120.244.216.*
【 在 moonwalker 的大作中提到: 】
: 我用window环境的-_-||
也是可以用 xxd 的
--
FROM 111.60.3.*