Tool for comparing 2 binary files in Windows [clos

2019-01-10 05:11发布

I need a tool for comparing 2 binary files. The files are quite big. Some freeware or trial tools I found on internet are not convenient to use for big files. Can you recommend me any tools?

8条回答
家丑人穷心不美
2楼-- · 2019-01-10 05:26

In Cygwin:

$cmp -bl <file1> <file2>

diffs binary offsets and values are in decimal and octal respectively.. Vladi.

查看更多
乱世女痞
3楼-- · 2019-01-10 05:36

My favorite "swiss knife" Beyond Compare from http://www.scootersoftware.com/

查看更多
倾城 Initia
4楼-- · 2019-01-10 05:37

I prefer to use objcopy to convert to hex, then use diff.

查看更多
放荡不羁爱自由
5楼-- · 2019-01-10 05:38

A few possibilities:

See also: Binary diff tool for very large files?

查看更多
【Aperson】
6楼-- · 2019-01-10 05:40

If you want to find out only whether or not the files are identical, you can use the Windows fc command in binary mode:

fc.exe /b file1 file2

For details, see the reference for fc

查看更多
手持菜刀,她持情操
7楼-- · 2019-01-10 05:40

I think hexcmp is instant & easy to use

It is a gui app compared to those command-line, very easy to use yet quite powerful feature-wise. It should be useful for beginners & passing users.

HexCmp HexCmp is a visual binary file compare application and easy-to-use hex editor. It can help you to compare two files as a binary raw quickly and easily. ($29.95)

查看更多
登录 后发表回答