0

我想要做的是读取“.d”二进制文件的内容并将它们存储在一个数组中。所以我写了以下代码:

void viewFile()
{
   unsigned char inFileData[SIZE];
   char fileName[SIZE];
   int numRead;

   FILE *inBinFile;


    printf("Enter the file name:");
    scanf("%s", fileName);

    inBinFile = fopen( fileName, "rb");
        if(( inBinFile = fopen(fileName, "rb")) == NULL )
        {
           fprintf( stderr, "Error opening %s\n", fileName );
           clearStdin();/*a function to clear stdin*/
           mainMenu();/*a function to prompt user input*/
        }
    numRead = fread( inFileData, sizeof(unsigned char), SIZE, inBinFile );
    inFileData[SIZE] = '\0';

    printf("U coded data:\n%s\n", inFileData);
    printf("%d\n", numRead);

    fclose(inBinFile);
   return;
}

输出是一堆不可读的垃圾。我做错了哪一部分?我不明白。

另外,我写了我的 clearStdin 函数如下:

void clearStdin(void)
{
    scanf("%*[^\n]");
    scanf("%*1[\n]");
   return;
}

编译器没有报告任何错误,但不知何故,函数调用似乎并没有完全按照我想要的方式工作。它确实清除了标准输入,但在调用此函数的任何地方都会出现错误,例如,提示用户输入的 mainmenu 函数。

请帮忙!!提前致谢。

4

1 回答 1

2

“输出是一堆不可读的垃圾” - 是的,它的。它是一个二进制文件,并不意味着可以作为文本读取。

如果您想以可读形式查看二进制信息,请考虑对其进行十六进制转储。

请参阅此处了解执行此操作的方法。

于 2012-08-22T06:37:36.787 回答