int main()
{
//FILE *out = fopen("keimeno.txt", "w+");
FILE *in = fopen("keimeno.txt", "r");
int fullbufflen=0 , i;
char buffer[100];
fgets(buffer, 100, in);
int bufflen = strlen(buffer);
char *text;
text =calloc(bufflen,sizeof(char));
char *strcat(text, buffer);
// printf("line of "keimeno.txt": %s", buffer);
// printf("size of line "keimeno.txt": %inn", bufflen);
fullbufflen = bufflen;
while(fgets(buffer, 100, in)!=NULL)
{
// printf("line of "keimeno.txt": %s", buffer);
// printf("size of line "keimeno.txt": %inn", bufflen);
text =realloc(text,bufflen*sizeof(char));
char *strcat(text, buffer);
fullbufflen = bufflen + fullbufflen ;
}
for (i = 0;i<fullbufflen;i++)
{
printf("%cn",text[i]);
}
}
我正在尝试将全文文件(keimeno.txt)复制到动态内存数组中,每次最多使用100个字符的缓冲区。为了在最后测试它,我试图对结果进行验证。我只是无法让它工作。不知道最后是printf有问题,还是整个程序就是错了。
此外,动态数组在开始时应该具有 0 大小,所以如果有人也可以告诉我如何做到这一点,那将是受欢迎的。
提前谢谢。
有几个问题:
char *strcat(text, buffer);
这不是您调用函数的方式。 这是一个函数声明,并且不正确,因为它没有定义参数的类型。
要调用strcat
,只需执行以下操作:
strcat(text, buffer);
接下来,您没有为缓冲区分配足够的空间:
text =calloc(bufflen,sizeof(char));
您需要为终止字符串的空字节添加空格:
text =calloc(bufflen + 1,sizeof(char));
同样在这里:
text =realloc(text,bufflen*sizeof(char));
这只会重新分配总共 bufflen
个字节。 它不会向已分配的内容添加 bufflen
个字节,并且bufflen
与首次在 while
循环之外设置时保持不变。 请改为执行以下操作:
bufflen = strlen(buffer);
text =realloc(text,bufflen+fullbufflen+1);
这为当前长度、附加缓冲区和空字节提供了足够的空间。
最后,确保在最后fclose(in)
和free(text)
清理资源,并确保检查 fopen
的返回值以确保文件成功打开,并realloc
/calloc
以确保您的分配有效。
完成上述更改后,您的代码应如下所示:
int main(void)
{
//FILE *out = fopen("keimeno.txt", "w+");
FILE *in = fopen("keimeno.txt", "r");
if (in == NULL) {
perror("open failed");
exit(1);
}
int fullbufflen=0 , i;
char buffer[100];
fgets(buffer, 100, in);
int bufflen = strlen(buffer);
char *text;
text =calloc(bufflen+1,sizeof(char));
if (text == NULL) {
perror("calloc failed");
exit(1);
}
strcat(text, buffer);
// printf("line of "keimeno.txt": %s", buffer);
// printf("size of line "keimeno.txt": %inn", bufflen);
fullbufflen = bufflen;
while(fgets(buffer, 100, in)!=NULL)
{
// printf("line of "keimeno.txt": %s", buffer);
// printf("size of line "keimeno.txt": %inn", bufflen);
bufflen = strlen(buffer);
text =realloc(text,bufflen+fullbufflen+1);
if (text == NULL) {
perror("realloc failed");
exit(1);
}
strcat(text, buffer);
fullbufflen = bufflen + fullbufflen ;
}
fclose(in);
for (i = 0;i<fullbufflen;i++)
{
printf("%cn",text[i]);
}
free(text);
}
这是一个可能的解决方案:
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#define ERR (-1)
#define GROW 100
static void die ( const char * msg ) { perror(msg); exit(1); }
int main ( void ) {
char * filename = "in.txt";
size_t buffSize = 0;
size_t buffUsed = 0;
ssize_t bytesRead = 0;
char * buffer = NULL;
char * tmp;
int fd;
fd = open(filename, O_RDONLY, 0);
if (fd == ERR) die("open");
do {
buffUsed += (size_t)bytesRead;
if (buffUsed == buffSize) {
tmp = realloc(buffer, buffSize += GROW);
if (tmp == NULL) die("realloc");
buffer = tmp;
}
bytesRead = read(fd, buffer + buffUsed, buffSize - buffUsed);
if (bytesRead == ERR) die("read");
} while (bytesRead > 0);
if (write(STDOUT_FILENO, buffer, buffUsed) == ERR) die("write");
free(buffer);
if (close(fd) == ERR) die("close");
return 0;
}
像原始文件名一样,输入文件名是硬编码的,这是次优的...