如何用C语言将数组写入文件

时间:2013-09-03 17:00:19

标签: c io

我有一个二维矩阵:

char clientdata[12][128];

将内容写入文件的最佳方法是什么?我需要不断更新此文本文件,以便在每次写入时清除文件中的先前数据。

3 个答案:

答案 0 :(得分:29)

由于数据大小是固定的,将整个数组写入文件的一种简单方法是使用二进制写入模式:

FILE *f = fopen("client.data", "wb");
fwrite(clientdata, sizeof(char), sizeof(clientdata), f);
fclose(f);

这会立即写出整个2D数组,并覆盖以前存在的文件内容。

答案 1 :(得分:0)

我宁愿添加一个测试来使其健壮! fclose()在任何一种情况下都会完成,否则文件系统将释放文件描述符

int written = 0;
FILE *f = fopen("client.data", "wb");
written = fwrite(clientdata, sizeof(char), sizeof(clientdata), f);
if (written == 0) {
    printf("Error during writing to file !");
}
fclose(f);

答案 2 :(得分:0)

这个问题竟然如此简单... 上面给出的示例处理字符,这是如何处理整数数组...

/* define array, counter, and file name, and open the file */
int unsigned n, prime[1000000];
FILE *fp;
fp=fopen("/Users/Robert/Prime/Data100","w");
prime[0] = 1;  /* fist prime is One, a given, so set it */
/* do Prime calculation here and store each new prime found in the array */
prime[pn] = n; 
/* when search for primes is complete write the entire array to file */
fwrite(prime,sizeof(prime),1,fp); /* Write to File */

/* To verify data has been properly written to file... */
fread(prime,sizeof(prime),1,fp); /* read the entire file into the array */
printf("Prime extracted from file Data100: %10d \n",prime[78485]); /* verify data written */
/* in this example, the 78,485th prime found, value 999,773. */

对于任何寻求C编程指导的人来说,这个网站都是很棒的...

引用:[https://overiq.com/c-programming/101/fwrite-function-in-c/