我必须将我的应用程序记录到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();
这不是我想要的,因为它不必要填补内存.我想逐步做…有些建议吗?
解决方法:
如果您可以切换到普通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 ……但它可以工作.希望这可以帮助.