我希望用cereal C ++序列化库序列化大尺寸矢量。
但是,如果试图这样做,例外"无法阅读" + std :: to_string(size)+"来自输入流的字节!阅读" + std :: to_string(readSize)"扔了。
有谁知道这方面的好解决方案? 我使用的是VisualStudio 2017。
源代码如下所示。
#include <iostream>
#include <fstream>
#include "include\cereal\cereal.hpp"
#include "include\cereal\archives\binary.hpp"
#include "include\cereal\types\vector.hpp"
#include "include\cereal\types\string.hpp"
void show(std::vector<int> v) {
for (auto i : v)std::cout << i << ",";
std::cout << std::endl;
}
int main(void) {
const std::string file_name = "out.cereal";
{
std::vector<int> src;
// const int STOP = 10; //OK
const int STOP = 1000; // NG
for (int i = 0; i < STOP; i++)src.push_back(i);
std::cout << "src:" << std::endl;
show(src);
std::ofstream ofs(file_name, std::ios::binary);
cereal::BinaryOutputArchive archive(ofs);
archive(src);
}
{
std::vector<int> dst;
std::fstream fs(file_name);
cereal::BinaryInputArchive iarchive(fs);
iarchive(dst);
std::cout << "dst:" << std::endl;
show(dst);
}
#ifdef _MSC_VER
system("pause");
#endif
return 0;
}
答案 0 :(得分:1)
你的代码在Linux中运行正常,所以我认为这与Windows上的文本和二进制处理之间的区别有关。在构造输入流时检查是否通过了std::ios::binary
。同时将其构建为std::ifstream
,而不仅仅是std::fstream
。
我认为这可能与Windows期望(或添加)Unicode字节顺序标记有关,这会使串行器混乱。