尽管我尽了最大的努力,但我似乎无法在这里找到错误。我正在向 ofstream 写入一个向量。该向量包含二进制数据。然而,由于某种原因,当一个空白字符(0x10、0x11、0x12、0x13、0x20)应该被写入时,它被跳过了。
我尝试过使用迭代器和直接的 ofstream::write()。
这是我正在使用的代码。我已经注释掉了我尝试过的其他一些方法。
void
write_file(const std::string& file,
std::vector<uint8_t>& v)
{
std::ofstream out(file, std::ios::binary | std::ios::ate);
if (!out.is_open())
throw file_error(file, "unable to open");
out.unsetf(std::ios::skipws);
/* ostreambuf_iterator ...
std::ostreambuf_iterator<char> out_i(out);
std::copy(v.begin(), v.end(), out_i);
*/
/* ostream_iterator ...
std::copy(v.begin(), v.end(), std::ostream_iterator<char>(out, ""));
*/
out.write((const char*) &v[0], v.size());
}
编辑:以及读取它的代码。
void
read_file(const std::string& file,
std::vector<uint8_t>& v)
{
std::ifstream in(file);
v.clear();
if (!in.is_open())
throw file_error(file, "unable to open");
in.unsetf(std::ios::skipws);
std::copy(std::istream_iterator<char>(in), std::istream_iterator<char>(),
std::back_inserter(v));
}
这是一个示例输入:
30 0 0 0 a 30 0 0 0 7a 70 30 0 0 0 32 73 30 0 0 0 2 71 30 0 0 4 d2
这是我读回来时得到的输出:
30 0 0 0 30 0 0 0 7a 70 30 0 0 0 32 73 30 0 0 0 2 71 30 0 0 4 d2
如您所见, 0x0a 被省略了,表面上是因为它是空格。
任何建议将不胜感激。