gpt4 book ai didi

c - 在 C 中,我应该如何读取文本文件并打印所有字符串

转载 作者:太空狗 更新时间:2023-10-29 16:15:39 26 4
gpt4 key购买 nike

我有一个名为 test.txt 的文本文件

我想编写一个 C 程序来读取该文件并将内容打印到控制台(假设该文件仅包含 ASCII 文本)。

我不知道如何获取字符串变量的大小。像这样:

char str[999];
FILE * file;
file = fopen( "test.txt" , "r");
if (file) {
while (fscanf(file, "%s", str)!=EOF)
printf("%s",str);
fclose(file);
}

大小 999 不起作用,因为 fscanf 返回的字符串可能大于该大小。我该如何解决这个问题?

最佳答案

最简单的方法是读取一个字符,读取后立即打印:

int c;
FILE *file;
file = fopen("test.txt", "r");
if (file) {
while ((c = getc(file)) != EOF)
putchar(c);
fclose(file);
}

c 是上面的 int,因为 EOF 是一个负数,而一个普通的 char 可能是 未签名

如果你想分块读取文件,但没有动态内存分配,你可以这样做:

#define CHUNK 1024 /* read 1024 bytes at a time */
char buf[CHUNK];
FILE *file;
size_t nread;

file = fopen("test.txt", "r");
if (file) {
while ((nread = fread(buf, 1, sizeof buf, file)) > 0)
fwrite(buf, 1, nread, stdout);
if (ferror(file)) {
/* deal with error */
}
fclose(file);
}

上面的第二种方法本质上是您将如何读取具有动态分配数组的文件:

char *buf = malloc(chunk);

if (buf == NULL) {
/* deal with malloc() failure */
}

/* otherwise do this. Note 'chunk' instead of 'sizeof buf' */
while ((nread = fread(buf, 1, chunk, file)) > 0) {
/* as above */
}

您使用 %s 作为格式的 fscanf() 方法丢失了有关文件中空白的信息,因此它没有将文件完全复制到 stdout.

关于c - 在 C 中,我应该如何读取文本文件并打印所有字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3463426/

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