我必须将我的应用程序记录到json文件中。预计应用程序会持续数周,所以我想逐步编写json文件。
目前我正在手动编写json,但是有一些日志阅读器应用程序正在使用Jsoncpp lib,并且应该很高兴用Jsoncpp lib写下日志。
但是在手册和一些例子中我没有找到类似的东西......它总是像:
Json::Value root;
// fill the json
ofstream mFile;
mFile.open(filename.c_str(), ios::trunc);
mFile << json_string;
mFile.close();
这不是我想要的,因为它不必要填补内存。我想逐步增加..有些建议吗?
答案 0 :(得分:4)
我是jsoncpp的维护者。不幸的是,它没有逐步写入。它 写入流而不使用额外的内存,但这对你没有帮助。
答案 1 :(得分:3)
如果您可以切换到普通JSON 到 JSON行,如How I can I lazily read multiple JSON objects from a file/stream in Python?中所述(感谢 ctn 链接) ,你可以这样做:
const char* myfile = "foo.json";
// Write, in append mode, opening and closing the file at each write
{
Json::FastWriter l_writer;
for (int i=0; i<100; i++)
{
std::ofstream l_ofile(myfile, std::ios_base::out | std::ios_base::app);
Json::Value l_val;
l_val["somevalue"] = i;
l_ofile << l_writer.write(l_val);
l_ofile.close();
}
}
// Read the JSON lines
{
std::ifstream l_ifile(myfile);
Json::Reader l_reader;
Json::Value l_value;
std::string l_line;
while (std::getline(l_ifile, l_line))
if (l_reader.parse(l_line, l_value))
std::cout << l_value << std::endl;
}
在这种情况下,文件中没有单个JSON ......但它可以正常工作。希望这会有所帮助。