我正在尝试从二进制文件中读取一些数据。
我有一个结构设置,看起来像这样:
struct track{
unsigned long ID;
string title;
};
一个存储
等值的文件 [00000001][5468652054726163]
[00000002][6F776C6F6F6B6174]
这是我在某种伪代码中的可怕逻辑,
blocksize = 4; // Read 4 bytes at a time
while(!endoffile){
track[i].ID = (blocksize,pos) // get 4 bytes starting at position
track[i].title = blocksize*2,pos+4) // get 8 bytes starting 4 after last position
pos+12; i++;
}
对不起,这太糟糕了。就像我说我是C ++的新手。我知道如何使用fstream等,它只是循环通过二进制字节的逻辑,完全抛弃了我。
答案 0 :(得分:3)
您可以这样做:
#include <cstdint>
#include <fstream>
#include <string>
struct track { uint32_t id; char title[8]; };
std::ifstream infile("thefile.bin");
for (;;)
{
track t;
if (!infile.read(reinterpret_cast<char*>(&t.id), 4) ||
!infile.read(t.title, 8) ||
infile.gcount() != 8)
{
// error, die (or perhaps end of file)
}
// now you can use "t", e.g.:
std::string title(t.title, 8); // a sane string object
}