1

下面的 c++ 程序无法读取文件。我知道使用 cstdio 不是一个好习惯,但我已经习惯了,而且无论如何它应该可以工作。

$ ls -l l.uyvy

-rw-r--r-- 1 atilla atilla 614400 2010-04-24 18:11 l.uyvy

$ ./a.out l.uyvy

从 614400 中读取 0 个字节,可能是错误的文件

代码:

#include<cstdio>
int main(int argc, char* argv[])
{
    FILE *fp;

    if(argc<2)
    {
            printf("usage: %s <input>\n",argv[0]);
            return 1;
    }

    fp=fopen(argv[1],"rb");
    if(!fp)
    {
            printf("erör, cannot open %s for reading\n",argv[1]);
            return -1;
    }
    int bytes_read=fread(imgdata,1,2*IMAGE_SIZE,fp); //2bytes per pixel
    fclose(fp);
    if(bytes_read < 2*IMAGE_SIZE)
    {
            printf("Read %d bytes out of %d, possibly wrong file\n",
                 bytes_read, 2*IMAGE_SIZE);
            return -1;
    }
    return 0;
}
4

2 回答 2

2

您已经将参数重新设置为 size 和 nmemb

http://www.manpagez.com/man/3/fread/

换一种方式试试

int bytes_read = fread (imgdata, 2*IMAGE_SIZE, 1, fp);

此外,您还没有提供 imgdata 缓冲区的声明,您需要确保缓冲区足够大 - 或者已正确分配。

于 2010-06-13T09:48:15.123 回答
0

我通过初始化指针解决了这个问题。有趣的是,当您尝试读取未初始化的指针时,读取失败而不是给出段错误,这令人困惑。

于 2010-06-13T09:52:50.803 回答