• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

C++中rapidjson组装map和数组array的代码示例

c++ 搞代码 4年前 (2022-01-06) 74次浏览 已收录 0个评论

今天小编就为大家分享一篇关于C++中rapidjson组装map和数组array的代码示例,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧

rapidjson组装map和数组array的代码示例

直接上码:

 #include  #include <map> // 请自己下载开源的rapidjson #include "rapidjson/prettywriter.h" #include "rapidjson/rapidjson.h" #include "rapidjson/document.h" #include "rapidjson/stringbuffer.h" #include "rapidjson/writer.h" #include "rapidjson/memorystream.h" #include  #include  using namespace std; using rapidjson::Document; using rapidjson::StringBuffer; using rapidjson::Writer; using namespace rapidjson; // 注意int和uint64_t map g_mChildInt; map g_mChildString; string formJson(const map &mInt, const map &mString, const string &strChild="", const map &mChildInt=g_mChildInt, const map &mChildString=g_mChildString, const string &strChild2="", const map &mChildInt2=g_mChildInt, const map &mChildString2=g_mChildString) { Document document; Document::AllocatorType& allocator = document.GetAllocator(); Value root(kObjectType); Value key(kStringType); Value value(kStringType); // 当前级别 for(map::const_iterator it = mInt.begin(); it != mInt.end(); ++it) { key.SetString(it->first.c_str(), allocator); root.AddMember(key, it->second, allocator); } for(map::const_iterator it = mString.begin(); it != mString.end(); ++it) { key.SetString(it->first.c_str(), allocator); value.SetString(it->second.c_str(), allocator); root.AddMember(key, value, allocator); } // 孩子级别 if(!strChild.empty()) { Value child(kObjectType); for(map::const_iterator it = mChildInt.begin(); it != mChildInt.end(); ++it) { key.SetString(it->first.c_str(), allocator); child.AddMember(key, it->second, allocator); } for(map::const_iterator it = mChildString.begin(); it != mChildString.end(); ++it) { key.SetString(it->first.c_str(), allocator); value.SetString(it->second.c_str(), allocator); child.AddMember(key, value, allocator); } key.SetString(strChild.c_str(), allocator); root.AddMember(key, child, allocator); } // 孩子级别 if(!strChild2.empty()) { Value child(kObjectType); for(map::const_iterator it = mChildInt2.begin(); it != mChildInt2.end(); ++it) { key.SetString(it->first.c_str(), allocator); child.AddMember(key, it->second, allocator); } for(map::const_iterator it = mChildString2.begin(); it != mChildString2.end(); ++it) { key.SetString(it->first.c_str(), allocator); value.SetString(it->second.c_str(), allocator); child.AddMember(key, value, allocator); } key.SetString(strChild2.c_str(), allocator); root.AddMember(key, child, allocator); } StringBuffer buffer; Writer writer(buffer); root.Accept(writer); return buffer.GetString(); } string formJsonWithArray(const map &mInt, const map &mString, const string &strChild1, const map &mChildInt, const map &mChildString, string &strChild2, vector<map >&mVecChildInt, vector<map >&mVecChildString) { Document document; Document::AllocatorType& allocator = document.GetAllocator(); Value root(kObjectType); Value key(kStringType); Value value(kStringType); // 当前级别 for(map::const_iterator it = mInt.begin(); it != mInt.end(); ++it) { key.SetString(it->first.c_str(), allocator); root.AddMember(key, it->second, allocator); } for(map::const_iterator it = mString.begin(); it != mString.end(); ++it) { key.SetString(it->first.c_str(), allocator); value.SetString(it->second.c_str(), allocator); root.AddMember(key, value, allocator); } // 孩子级别 if(!strChild1.empty()) { Value child(kObjectType); for(map::const_iterator it = mChildInt.begin(); it != mChildInt.end(); ++it) { key.SetString(it->first.c_str(), allocator); child.AddMember(key, it->second, allocator); } for(map::const_iterator it = mChildString.begin(); it != mChildString.end(); ++it) { key.SetString(it->first.c_str(), allocator); value.SetString(i<b style="color:transparent">来源gao@!dai!ma.com搞$$代^@码!网</b>t->second.c_str(), allocator); child.AddMember(key, value, allocator); } key.SetString(strChild1.c_str(), allocator); root.AddMember(key, child, allocator); } // 孩子级别 unsigned int uiSize1 = mVecChildInt.size(); unsigned int uiSize2 = mVecChildString.size(); if(!strChild2.empty() && uiSize1 == uiSize2) { Value array(rapidjson::kArrayType); for(unsigned int i = 0; i <uiSize1; ++i) { Value child(kObjectType); for(map::iterator it = mVecChildInt[i].begin(); it != mVecChildInt[i].end(); ++it) { key.SetString(it->first.c_str(), allocator); child.AddMember(key, it->second, allocator); } for(map::iterator it = mVecChildString[i].begin(); it != mVecChildString[i].end(); ++it) { key.SetString(it->first.c_str(), allocator); value.SetString(it->second.c_str(), allocator); child.AddMember(key, value, allocator); } array.PushBack(child, allocator); } key.SetString(strChild2.c_str(), allocator); root.AddMember(key, array, allocator); } StringBuffer buffer; Writer writer(buffer); root.Accept(writer); return buffer.GetString(); } void test1() { map mInt; map mString; mInt["code"] = 0; mString["msg"] = "ok"; string strChild1 = "xxx"; map mChildInt1; map mChildString1; mChildInt1["key"] = 729; mChildString1["kk"] = "vv"; string strChild2 = "yyy"; map mChildInt2; map mChildString2; mChildInt2["key"] = 730; mChildString2["kkk"] = "vvv"; string s = formJson(mInt, mString, strChild1, mChildInt1, mChildString1,strChild2, mChildInt2, mChildString2); cout << s << endl; } void test2() { map mInt; map mString; mInt["code"] = 0; mString["msg"] = "ok"; string strChild1 = "xxx"; map mChildInt; map mChildString; mChildString["kk"] = "vv"; mChildInt["key"] = 729; string strChild2 = "data"; vector<map >mVecChildInt; vector<map >mVecChildString; { map mChildInt; map mChildString; mChildInt["id"] = 1; mChildString["path"] = "pa"; mChildString["sha"] = "sh"; mVecChildInt.push_back(mChildInt); mVecChildString.push_back(mChildString); } { map mChildInt; map mChildString; mChildInt["id"] = 2; mChildString["path"] = "pa"; mChildString["sha"] = "sh"; mVecChildInt.push_back(mChildInt); mVecChildString.push_back(mChildString); } string s = formJsonWithArray(mInt, mString, strChild1, mChildInt, mChildString, strChild2, mVecChildInt, mVecChildString); cout << s << endl; } int main(int argc, char *argv[]) { test1(); test2(); return 0; }

结果:

{“code”:0,”msg”:”ok”,”xxx”:{“key”:729,”kk”:”vv”},”yyy”:{“key”:730,”kkk”:”vvv”}}
{“code”:0,”msg”:”ok”,”xxx”:{“key”:729,”kk”:”vv”},”data”:[{“id”:1,”path”:”pa”,”sha”:”sh”},{“id”:2,”path”:”pa”,”sha”:”sh”}]}

总结

以上就是C++中rapidjson组装map和数组array的代码示例的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:C++中rapidjson组装map和数组array的代码示例

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址