c – 将属性树提升为字符串

前端之家收集整理的这篇文章主要介绍了c – 将属性树提升为字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
需要通过Internet传输存储在ini文件中的系统配置.我正在使用boost来处理配置ini文件.如何将整个属性树保存到字符串?

解决方法

只需写入std :: stringstream:
std::ostringstream oss;
boost::property_tree::ini_parser::write_ini(oss,my_ptree);

std::string inifile_text = oss.str();

根据需要替换为wstring / wostringstream

原文链接:https://www.f2er.com/c/119638.html

猜你在找的C&C++相关文章