2

是否可以制作从二进制文件中读取几个字节并将它们作为可读文本保存到另一个文件的批处理文件或 vbs?(例如阅读 4E 50 44 -> 保存 NPD)

示例文件箱

[文件开头] 8 字节的垃圾 24 字节我需要的(可读文本)文件的其余部分 [eof]

4

1 回答 1

0

you can try with Frank's hex editor: https://groups.google.com/forum/?fromgroups=#!searchin/alt.msdos.batch.nt/hexeditor/alt.msdos.batch.nt/q84l84C2Q8Q/CjBkaDIKxfcJ

with this command cerutil -decodehex myfile myfile.hex you can see your file in hex , and then process it.With encodehex you can convert a hex data into text.

于 2013-04-05T13:05:37.030 回答