写入和读取二进制文件时出现问题

时间:2017-06-12 11:51:52

标签: c

我正在尝试创建一个合成数据集(0-1之间的值)并将它们保存在二进制文件中。以下是我的代码:

int n = 4000, dim = 4,i,j;
FILE *fp=fopen("dataset.data", "w+");
double *data = (double *) calloc(n * dim, sizeof(double));
double *data_to_read = (double *) calloc(n * dim, sizeof(double));

// Generate dataset
srand(1);
for (i = 0; i < (n * dim); ++i) {
    data[i] = (float) rand() / (float) RAND_MAX;
}

// Writing to binary file
if (fp) fwrite(data, 1, (n*dim) * sizeof(double), fp);
else { printf("Something went wrong while writing to File !!  \n"); }

// To make sure data have been written, read and print out the file. 
fp = fopen("Home/dataset.data", "rb");
fread(data_to_read, 1, (n*dim) * sizeof(double), fp);
fclose(fp);

for (i = 0; i < n; ++i) {
    printf("[%d] ", i);
    for (j = 0; j < dim; ++j) {
        printf("%f, ", data_to_read[i * dim + j]);
    }
    printf("\n");
}

但是,在打印结束时我得到了很多零,这让我觉得有些不对劲。像这样:

[3962] 0.519062, 0.877532, 0.686047, 0.396526, 
[3963] 0.419497, 0.494090, 0.163209, 0.061352, 
[3964] 0.144232, 0.113827, 0.082452, 0.777153, 
[3965] 0.609784, 0.647998, 0.902744, 0.414265, 
[3966] 0.543551, 0.462175, 0.775620, 0.842364, 
[3967] 0.607382, 0.274029, 0.599672, 0.682604, 
[3968] 0.000000, 0.000000, 0.000000, 0.000000, 
[3969] 0.000000, 0.000000, 0.000000, 0.000000, 
[3970] 0.000000, 0.000000, 0.000000, 0.000000, 
[3971] 0.000000, 0.000000, 0.000000, 0.000000, 
[3972] 0.000000, 0.000000, 0.000000, 0.000000, 
[3973] 0.000000, 0.000000, 0.000000, 0.000000, 
[3974] 0.000000, 0.000000, 0.000000, 0.000000, 
[3975] 0.000000, 0.000000, 0.000000, 0.000000, 
[3976] 0.000000, 0.000000, 0.000000, 0.000000, 
[3977] 0.000000, 0.000000, 0.000000, 0.000000, 
[3978] 0.000000, 0.000000, 0.000000, 0.000000, 
[3979] 0.000000, 0.000000, 0.000000, 0.000000, 
[3980] 0.000000, 0.000000, 0.000000, 0.000000, 
[3981] 0.000000, 0.000000, 0.000000, 0.000000, 
[3982] 0.000000, 0.000000, 0.000000, 0.000000, 
[3983] 0.000000, 0.000000, 0.000000, 0.000000, 
[3984] 0.000000, 0.000000, 0.000000, 0.000000, 
[3985] 0.000000, 0.000000, 0.000000, 0.000000, 
[3986] 0.000000, 0.000000, 0.000000, 0.000000, 
[3987] 0.000000, 0.000000, 0.000000, 0.000000, 
[3988] 0.000000, 0.000000, 0.000000, 0.000000, 
[3989] 0.000000, 0.000000, 0.000000, 0.000000, 
[3990] 0.000000, 0.000000, 0.000000, 0.000000, 
[3991] 0.000000, 0.000000, 0.000000, 0.000000, 
[3992] 0.000000, 0.000000, 0.000000, 0.000000, 
[3993] 0.000000, 0.000000, 0.000000, 0.000000, 
[3994] 0.000000, 0.000000, 0.000000, 0.000000, 
[3995] 0.000000, 0.000000, 0.000000, 0.000000, 
[3996] 0.000000, 0.000000, 0.000000, 0.000000, 
[3997] 0.000000, 0.000000, 0.000000, 0.000000, 
[3998] 0.000000, 0.000000, 0.000000, 0.000000, 
[3999] 0.000000, 0.000000, 0.000000, 0.000000,

我不知道我的写作方式是否正确。任何帮助都是适用的。

3 个答案:

答案 0 :(得分:2)

您的代码中存在几个问题:

  • 一旦你写完文件,你就不会fclose
  • 如果成功,则不检查所有fopen
  • 您需要使用&#34; wb&#34;打开文件。而不是&#34; w +&#34;。
  • 你读的文件不是你写的。
  • 如果无法打开文件进行书写,则显示错误消息,但仍然继续尝试从无法打开的文件中读取

更正的计划(包括纠正无意义的评论和可疑的错误消息),<<的评论是我的:

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

int main()
{
  int n = 4000, dim = 4, i, j;
  FILE *fp = fopen("dataset.data", "wb");                   // <<  wee need "wb" here
  double *data = calloc(n * dim, sizeof(double));          // << no casts in C
  double *data_to_read = calloc(n * dim, sizeof(double));

  // Generate dataset
  srand(1);
  for (i = 0; i < (n * dim); ++i) {
    data[i] = (float)rand() / (float)RAND_MAX;
  }

  // Writing to binary file
  if (fp)
    fwrite(data, 1, (n*dim) * sizeof(double), fp);
  else 
  {
    printf("Something went wrong while opening the file to write !!  \n"); 
    return 1;                     // << abort of file could not be opened
  }

  fclose(fp);                     // << closing file

  // Read and print out the file. 
  fp = fopen("dataset.data", "rb");  // << opening the same file than the one we wrote to

  if (fp)                          // << checking if file could be opened
  {
    fread(data_to_read, 1, (n*dim) * sizeof(double), fp);
    fclose(fp);

    for (i = 0; i < n; ++i) {
      printf("[%d] ", i);
      for (j = 0; j < dim; ++j) {
        printf("%f, ", data_to_read[i * dim + j]);
      }
      printf("\n");
    }
  }
  else
  {
    printf("Something went wrong while opening the file to read!!  \n");
    return 1;
  }

  // << check if read data is equal to written data

  if (memcmp(data_to_read, data, n*dim) == 0)
  {
    printf("\nRead data is equal to written data\n");
  }

  return 0;
}

免责声明:可能还有其他错误我没有注意到。

答案 1 :(得分:0)

我想我已经发现了你的问题:

你写这个文件:

FILE *fp=fopen("dataset.data", "w+");

但你读了这个文件:

fp = fopen("Home/dataset.data", "rb");

您没有阅读您正在撰写的文件。

答案 2 :(得分:0)

以这种方式打开文件:

FILE *fp = fopen("dataset.data", "wb+");

然后,在用fwrite写入数据后,关闭文件指针或重置它:

fclose(fp);
//alternatively:
// fflush(fp); 
// fseek(fp, 0, SEEK_SET);

最后,纠正第二个fopen的路径

相关问题