gpt4 book ai didi

使用 strncpy 将文件逐行复制到 char 数组中

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

所以我试图逐行读取文本文件并将每一行保存到一个字符数组中。

根据我在循环中的打印输出,我可以看出它正确地计算了行数和每行的字符数,但我在使用 strncpy 时遇到了问题。当我尝试打印数据数组时,它只显示 2 个奇怪的字符。我从未使用过 strncpy,所以我觉得我的问题可能与 null 终止有关。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc, char* argv[])
{
FILE *f = fopen("/home/tgarvin/yes", "rb");
fseek(f, 0, SEEK_END);
long pos = ftell(f);
fseek(f, 0, SEEK_SET);
char *bytes = malloc(pos); fread(bytes, pos, 1, f);
int i = 0;
int counter = 0;
char* data[counter];
int length;
int len=strlen(data);
int start = 0;
int end = 0;

for(; i<pos; i++)
{
if(*(bytes+i)=='\n'){
end = i;
length=end-start;
data[counter]=(char*)malloc(sizeof(char)*(length)+1);
strncpy(data[counter], bytes+start, length);
printf("%d\n", counter);
printf("%d\n", length);
start=end+1;
counter=counter+1;
}
}
printf("%s\n", data);
return 0;
}

最佳答案

您的“data[]”数组被声明为指向大小为 0 的字符的指针数组。当您将指针分配给它时,它们就没有空间了。这可能会导致无穷无尽的麻烦。

最简单的解决方法是遍历数组以确定行数,然后执行类似“char **data = malloc(number_of_lines * sizeof(char *))”的操作。然后做“data[counter]”的赋值就可以了。

你说得对,strncpy() 是个问题——如果它复制了最大字节数,它不会以 '\0' 终止字符串。在 strncpy() 之后添加“data[counter][length ] = '\0';”

最后的 printf() 是错误的。要打印所有行,请使用“for (i = 0; i < counter; i++) printf("%s\n", data[counter]);”

关于使用 strncpy 将文件逐行复制到 char 数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3238829/

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