gpt4 book ai didi

c - 我无法让 fread() 将文件内容打印到字符串变量

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

我已经尝试了很长时间来弄清楚如何让程序从文件中读取文本。我已经尝试过使用 fgets() 和循环的解决方案。程序运行但不打印变量,表明文本未被提取。

    #include <stdio.h>
#include <string.h>
#include "stdfn.h"


int main(int argc, char* argv[])
{
char* request;
char bf_text[1024];
char character;

intro("Site Blocker", 2014, "MIT");

request = bash("curl http://redsec.ru/blocked_sites.txt"); // Source of bash() is at line 139 https://github.com/Pavelovich/lib-c/blob/master/stdfn.h
//printf("%s", request);

FILE* block_file = fopen(".blocked_sites", "w+"); // Changed from "w" based on this thread, currently only outputs a small part of the file.
FILE* hosts = fopen("hosts", "w");
FILE* hosts_tmp = fopen(".hosts", "w");

// Print the text of the web request to the temporary
// .blocked_sites file
fprintf(block_file, "%s", request);

rewind(block_file);
fread(bf_text, sizeof(block_file), 1, block_file);
printf("%s", bf_text);

fclose(block_file);
return 0;
}

最佳答案

sizeof(block_file) 不会给您文件的大小。它会给你一个文件指针的大小,可能是四个或八个字节。在你的情况下可能是八个,因为你说它正在读取 "74.125.2",这是八个字节,然后变得困惑。您需要在 POSIX 系统上使用类似 stat() 的东西,或者 fseek()ftell() 的组合。

如果您要使用 fread()fwrite(),您还应该以二进制模式打开文件,因为它们是二进制文件 IO 函数。它在 UNIX 系统上不会产生影响,但在 Windows 等系统上可能会有所不同。出于这个原因,您不应该真正混合使用文本和二进制模式 IO 函数。

您还应该检查 fopen() 调用的返回值以确保它们成功。

而且您正在使用的 bash() 函数也完全损坏了。每次调用它时都会发生内存泄漏,因为它从不 free() 输出 ,并且它会产生与您相同的 sizeof 错误是,尽管由于它所在的循环它仍然可以工作。它只会浪费它分配的所有内存。而正在泄漏内存,因为你从不free(request)。并且你最好永远不要在多个翻译单元中 #include 它,除非你想要到处都是多个定义错误。整个“库”充满了小学生类型的错误,事实上,包括反复检查 malloc() 的返回失败,分配内存以适应指针而不是它所指向的东西,以及等等。

关于c - 我无法让 fread() 将文件内容打印到字符串变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26268799/

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