gpt4 book ai didi

要构造的 C++ 二进制文件

转载 作者:行者123 更新时间:2023-11-30 02:50:32 26 4
gpt4 key购买 nike

我正在尝试从二进制文件中读取一些数据。

我有一个看起来像这样的结构设置:

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 等,只是循环遍历二进制字节的逻辑让我完全失望。

最佳答案

你可以这样做:

#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
}

关于要构造的 C++ 二进制文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20413081/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com