5

我有一个大问题需要解决,然后才能继续我的程序。

我必须打开一个二进制文件,读取它的内容,将内容保存到缓冲区中,用 malloc 在堆上分配空间,关闭文件,最后 printf(.bin 文件的内容)。我走了这么远(关闭文件尚未实现):

void executeFile(char *path){
    FILE *fp; /*filepointer*/
    size_t size; /*filesize*/
    unsigned int buffer []; /*buffer*/

    fp = fopen(path,"rb"); /*open file*/
    fseek(fp, 0, SEEK_END); 
    size = ftell(fp);         /*calc the size needed*/
    fseek(fp, 0, SEEK_SET); 
    buffer = malloc(size);  /*allocalte space on heap*/

    if (fp == NULL){ /*ERROR detection if file == empty*/
        printf("Error: There was an Error reading the file %s \n", path);           
        exit(1);
    }
    else if (fread(&buffer, sizeof(unsigned int), size, fp) != size){ /* if count of read bytes != calculated size of .bin file -> ERROR*/
        printf("Error: There was an Error reading the file %s - %d\n", path, r);
        exit(1);
    }else{int i;
        for(i=0; i<size;i++){       
            printf("%x", buffer[i]);
        }
    }
}

我想我弄乱了缓冲区,我不确定我是否正确读取了 .bin 文件,因为我无法使用它进行打印printf("%x", buffer[i])

希望大家能帮忙

来自德国的问候 :)

4

1 回答 1

8

建议更改:

  1. 将缓冲区更改为char(字节),因为ftell()它将报告字节大小(char)并malloc()使用字节大小。

    无符号整数缓冲区 []; /缓冲/

unsigned char *buffer; /*buffer*/
  1. [编辑] 2021:省略强制
    转换 2)这没关系,大小是字节,缓冲区指向字节,但可以显式强制转换

    缓冲区 = malloc(大小); /在堆上分配空间/

buffer = (unsigned char *) malloc(size);  /*allocate space on heap*/
/* or for those who recommend no casting on malloc() */
buffer = malloc(size);  /*allocate space on heap*/
  1. 将第二个参数从 更改sizeof(unsigned int)sizeof *buffer,即 1。

    else if (fread(buffer, sizeof(unsigned int), size, fp) != size){

else if (fread(buffer, sizeof *buffer, size, fp) != size){ 
  1. 更改"%x""%02x"else 单个数字十六进制数字会混淆输出。例如。“1234”是四个字节还是两个?

    printf("%x", 缓冲区[i]);

printf("%02x", buffer[i]);
  1. 您在函数结束时的清理可能包括

    fclose(fp); 免费(缓冲区);

于 2013-05-24T16:55:49.990 回答