gpt4 book ai didi

c++ - 如何使用 rapidjson 库从 vector 数据创建 json 文件?

转载 作者:行者123 更新时间:2023-11-28 05:13:43 25 4
gpt4 key购买 nike

我如何创建 json 文件(字符串):

vector<string>m_paths

我有代码:

 rapidjson::Document jsonfile;
jsonfile.SetObject();
rapidjson::Document::AllocatorType& jsonallocator = jsonfile.GetAllocator();


std::vector<String>::iterator itm;
rapidjson::Value paths(rapidjson::kArrayType);

for(itm = m_paths.begin(); itm != m_paths.end(); ++itm)
{
//rapidjson::Value jValueConverting;
// jValueConverting.SetString(GetLogRpl().c_str(), (rapidjson::SizeType)GetLogRpl().size(), jsonallocator);
}

jsonfile.AddMember("paths", paths, jsonallocator);


rapidjson::StringBuffer jsonstring;
rapidjson::Writer<rapidjson::StringBuffer> jsonwriter(jsonstring);
jsonfile.Accept(jsonwriter);

String fullJsonString = jsonstring.GetString();

return fullJsonString;

我必须使用 rapidjson 库并且不知道在创建分配器后我应该做什么。感谢您的帮助!

最佳答案

        StringBuffer sb;
PrettyWriter writer(sb);
writer.StartObject();
writer.String(_T("paths"));
writer.StartArray();
std::vector<String>::iterator itm;
for(itm = m_paths.begin(); itm != m_paths.end(); ++itm)
{
writer.String(*itm);
}
writer.EndArray();
writer.EndObject();

std::string fullJsonString = sb.GetString();

关于c++ - 如何使用 rapidjson 库从 vector<string> 数据创建 json 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43077584/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com