将二维数组写入/读取到二进制文件C.

我试图将数据从2D数组写入二进制文件.我只编写值大于0的数据.因此,如果数据为0,则不会将其写入文件.数据如下:

Level       0   1   2   3   4   5

Row 0       4   3   1   0   2   4
Row 1       0   2   4   5   0   0 
Row 2       3   2   1   5   2   0
Row 3       1   3   0   1   2   0

void { 

    // This is what i have for writing to file.

    ofstream outBinFile; 
    ifstream inBinFile; 
    int row; 
    int column; 

    outBinFile.open("BINFILE.BIN", ios::out | ios::binary);

    for (row = 0; row < MAX_ROW; row++){

        for (column = 0; column < MAX_LEVEL; column++){

          if (Array[row][column] != 0){

             outBinFile.write (reinterpret_cast<char*> (&Array[row][column]), sizeof(int)
          }
        }
    } 

    outBinFile.close(); 

    // Reading to file. 

    inBinFile.open("BINFILE.BIN", ios::in | ios::binary);

    for (row = 0; row < MAX_ROW; row++){

        for (column = 0; column < MAX_LEVEL; column++){

          if (Array[row][column] != 0){

             inBinFile.read (reinterpret_cast<char*> (&Array[row][column]), sizeof(int)
          }
        }
    } 

    inBinFile.close();  
}

正在读取的所有数据都被插入第一行,当我退出程序时,如何获取数据?

最佳答案 您只在数据不等于零时读取,意味着它在第一个零时被锁定.一旦达到零,它就会停止阅读.

在“if命令”之前将文件读取到其他一些变量然后在if(变量!= 0)数组[row] [column] =变量.

如果使用数据初始化数组,可能需要查看设置的读数位置.所以设置好我没有,我应该从另一个位置读取下一个.

点赞