以十六进制格式获取文件 - 我的输出与xxd命令输出

时间:2014-10-03 11:29:56

标签: c filesize fgets hexdump xxd

我正在尝试编写一个简单的程序来从文件生成十六进制输出。这是我的two.c文件:

#include <stdio.h>

int 
main(void) {
    printf("%s\n", "Hello");
    return 0;
}

以这种方式编译:

 gcc -std=c99 -Wall -Wextra -pedantic-errors two.c -o two

所以我有two个可执行文件。

现在,我写了一个程序来读取该文件并显示它的二进制(十六进制)输出。这是我的计划:

#include <stdio.h>

int 
fileSize(FILE *ptr) {

    int size = 0;
    fseek(ptr, 0, SEEK_END);
    size = ftell(ptr);
    fseek(ptr, 0, SEEK_SET);
    return size;

}

int 
main(void) {

    FILE *fp;
    fp = fopen("two", "rb");
    int sz = fileSize(fp);
    char buff[ sz ];

    if (!fp) 
        printf("%s\n", "Not great at all");

    else 
        while (!feof(fp)) {
            fgets(buff, sz, fp);
            for (int i = 0; i < sz; i++) {
                printf("%02x%02x ", (buff[i] & 0xFF), (buff[i+1] & 0xFF));
                if (!(i % 8))
                    printf("\n");
            }
            printf("\n");
        }

    fclose(fp);

}

这是http://pastebin.com/RVLy6H9B

的巨大输出

问题是,当我使用linux命令xxd two > two.hex时,我得到完全不同的输出(它不是关于格式化)并且只有大约500行字节,而不是像输出中那样大约8k。

xxd输出:http://pastebin.com/Gw9wg93g

问题出在哪里?阅读函数fgets(buff, sz, fp);有问题吗?

1 个答案:

答案 0 :(得分:2)

fgets()在EOF或换行符后停止阅读。但是你的代码总是循环sz次。

fgets()不是读取二进制数据的正确函数。您可以改为使用fread()