在 C++ 中使用 CArchive class 从二进制文件中读取短数据

Read short data from binary file using CArchive class in C++

我创建了一个将 short 数组存储到 file.using CArchive class

中的应用程序

保存数据的代码

CFile objFile(cstr, CFile::modeCreate | CFile::modeWrite);
CArchive obj(&objFile, CArchive::store);

obj << Number;  //int
obj << reso;    //int
obj << height;  //int
obj << width;   //int
int total = height * width;
for (int i = 0; i < total; i++)
    obj << buffer[i];//Short Array

这是我用来在文件中保存数据的代码片段。

现在我想使用 CArchive 打开该文件。

我尝试使用 fstream 打开它。

std::vector<char> buffer(s);
if (file.read(buffer.data(), s))
{

}

但是上面的代码并没有给我保存的相同数据。那么,任何人都可以告诉我如何使用 CArchive 或任何其他函数在 short 数组中获取数据。

假设缓冲区是一个SHORT数组,加载数据的代码可以写成:

CFile objFile(cstr, CFile::modeRead);
CArchive obj(&objFile, CArchive::load);

obj >> Number;  //int
obj >> reso;    //int
obj >> height;  //int
obj >> width;   //int

int total = height * width;

//release the old buffer if needed... e.g: 
if( buffer ) 
    delete[] buffer;

//allocate the new buffer 
buffer = new SHORT [total];

for (int i = 0; i < total; i++) {
    obj >> buffer[i];
}

obj.Close();
objFile.Close();