-1

我想在将二进制数据写入文件之前暂时缓存它。这是我的想法。

由于我必须在此数据之前插入一个标头,以指示标头之后将有多少数据,因此我需要一种方法在将这些数据写入ofstream file. 我决定创建一个ostream buffer();可以转储所有这些数据而无需将其写入文件的位置。

写完标头后,我只是file << buffer转储数据。

我仍在为编译器错误而苦苦挣扎,例如:

error: no matching function for call to ‘TGA2Converter::writePixel(std::ostream (&)(), uint32_t&)’
note: candidate is: void TGA2Converter::writePixel(std::ostream&, uint32_t)

为什么我会收到此消息?而且,也许更重要的是,我是否以最有效和最方便的方式解决问题?


编辑:人们一直在要求代码。我试图把它缩小到这个......

// This is a file. I do not want to write the binary
// data to the file before I can write the header.
ofstream file("test.txt", ios::binary);

// This is binary data. Each entry represents a byte.
// I want to write it to a temporary cache. In my
// real code, this data has to be gathered before
// I can write the header because its contents depend
// on the nature of the data.
stringstream cache;
vector<uint32_t> arbitraryBinData;
arbitraryBinData.resize(3);
arbitraryBinData[0] = 0x00;
arbitraryBinData[1] = 0xef;
arbitraryBinData[2] = 0x08;

// Write it to temporary cache
for (unsigned i = 0; i < arbitraryBinData.size(); ++i)
    cache << arbitraryBinData[i];

// Write header
uint32_t header = 0x80;     // Calculation based on the data!
file << header;

// Write data from cache
file << cache;

我完全期望将此二进制数据写入文件:

0000000: 8000 ef08

但我得到了这个:

0000000: 3132 3830 7837 6666 6638 6434 3764 3139
0000010: 38

为什么我没有得到预期的结果?

4

1 回答 1

3

ostream buffer();正在声明一个函数,称为buffer不带参数并返回一个ostream. 也是ostream一个基类,你应该使用它strstream

于 2011-10-01T19:05:22.060 回答