前端之家收集整理的这篇文章主要介绍了
如何将json文件读入C字符串,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的
代码是这样的:
std::istringstream file("res/date.json");
std::ostringstream tmp;
tmp<<file.rdbuf();
std::string s = tmp.str();
std::cout<<s<<std::endl;
输出是res / date.json,而我真正想要的是这个json文件的全部内容.
这个
std::istringstream file("res/date.json");
创建一个从字符串“res / date.json”读取的流(命名文件).
这个
std::ifstream file("res/date.json");
创建一个从名为res / date.json的文件中读取的流(命名文件).
看到不同?
原文链接:https://www.f2er.com/js/154074.html