我正在研究ubuntu 10.04和gcc。我有一个带有自己的魔幻数字的二进制文件。当我读取文件时,幻数不相同。溪流接缝是正确的。

书写幻数:

std::fstream chfile;
chfile.open(filename.c_str(), std::fstream::binary | std::fstream::out);
if (chfile.good())
{
    chfile << (unsigned char)0x02 << (unsigned char)0x46 << (unsigned char)0x8A << (unsigned char)0xCE;
    // other input
    chfile.close();
}

读魔术数字:
std::fstream chfile;
chfile.open(filename.c_str(), std::fstream::binary | std::fstream::in);
if (chfile.good())
{
    unsigned char a,b,c,d;
    chfile >> a;
    chfile >> b;
    chfile >> c;
    chfile >> d;
    printlnn("header must : " << (int)0x02 << ' ' << (int)0x46 << ' ' << (int)0x8A << ' ' << (int)0xCE); // macro for debugging output
    printlnn("header read : " << (int)a << ' ' << (int)b << ' ' << (int)c << ' ' << (int)d);
    chfile.close();
}

当我将02 46 8A CE用作幻数时,就可以了(如输出所示):
header must : 2 70 138 206
header read : 2 70 138 206

但是当我使用EA 50 0C C5时,输出为:
header must : 234 80 12 197
header read : 234 80 197 1

最后一个1是下一个输入的合法值。那么为什么要区分它们,我该如何解决呢?

最佳答案

在第二种情况下,operator>>跳过字符值12。operator>>12识别为空格,并跳过它,以搜索下一个有效字符。

尝试改用无格式的输入操作(例如chfile.read()chfile.get())。

10-04 12:15