gpt4 book ai didi

c - 将文件写入缓冲区

转载 作者:太空宇宙 更新时间:2023-11-04 08:51:56 25 4
gpt4 key购买 nike

我正在尝试使用 wget 下载文件,然后将其打开,将其读入缓冲区,然后通过套接字将其发送到等待它的服务器。我已经成功地下载了文件,然后将其打开,但是当我尝试将其读入缓冲区时出现了问题。我要下载的文件有 8000 个字节长,但是当我将它写入缓冲区然后运行 ​​sizeof(fileBuffer) 时,它只报告 8 个字节的大小。这是代码:

    //open the file
if((downloadedFile = fopen(fileName, "rb"))==NULL){
perror("Downloaded file open");
}
//determine file size
fseek(downloadedFile, 0L, SEEK_END);
downloadedFileSize = ftell(downloadedFile);
fseek(downloadedFile, 0L, SEEK_SET);
printf("%s %d \n", "downloadedFileSizse = ",downloadedFileSize);

//send back length of file
if (send(acceptDescriptor, &downloadedFileSize, sizeof(long), 0) == -1){
perror("send downloaded file size Length");
exit(0);
}

//start by loading file into the buffer
char *fileBuffer = malloc(sizeof(char)*downloadedFileSize);
int bytesRead = fread(fileBuffer,sizeof(char), downloadedFileSize, downloadedFile);
printf("%s %d \n","bytesRead: ", bytesRead);
printf("sizeof(fileBuffer) Send back to SS: %d\n",sizeof(fileBuffer));

这是我得到的输出:

HTTP request sent, awaiting response... 200 OK
Length: 8907 (8.7K) [text/html]
Saving to: âindex.htmlâ

100%[======================================>] 8,907 --.-K/s in 0s

2013-10-13 09:35:16 (158 MB/s) - âindex.htmlâ saved [8907/8907]

downloadedFileSizse = 8907
bytesRead: 8907
sizeof(fileBuffer) Send back to SS: 8
bytesLeft: 0
n: 8907

当我运行 fread 时,它正在读取 8907 个字节,但出于某种原因,它没有将它们正确写入缓冲区。

最佳答案

fileBuffer 是一个字符指针,所以 sizeof 将报告字符指针的大小,而不是缓冲区的大小。 fread 的返回值是写入缓冲区的字节数,因此使用 bytesRead 作为缓冲区的大小。

关于c - 将文件写入缓冲区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19347017/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com