gpt4 book ai didi

c++ - 在C++中访问json数组值

转载 作者:行者123 更新时间:2023-12-03 07:16:10 33 4
gpt4 key购买 nike

我是C++的新手,并尝试使用nlohmann库,但我感到很困惑。我想从json修改对象数组。

json = 
{
"a": "xxxx",
"b": [{
"c": "aaa",
"d": [{
"e": "yyy"
},
{
"e": "sss",
"f": "fff"
}
]
}]
}
现在,我想在上述结构中将 e值替换为“example”。有人可以帮我吗。
我试图遍历json结构,并能够读取“e”值,但无法替换它。我尝试过:
std::vector<std::string> arr_value;
std::ifstream in("test.json");
json file = json::parse(in);

for (auto& td : file["b"])
for (auto& prop : td["d"])
arr_value.push_back(prop["e"]);
//std::cout<<"prop" <<prop["e"]<< std::endl;

for (const auto& x : arr_value)
std::cout <<"value in vector string= " <<x<< "\n";

for (decltype(arr_value.size()) i = 0; i <= arr_value.size() - 1; i++)
{
std::string s = arr_value[i]+ "emp";
std::cout <<"changed value= " <<s << std::endl;
json js ;
js = file;
std::ofstream out("test.json");
js["e"]= s;
out << std::setw(4) << js << std::endl;

}

最佳答案

以下内容将MODIFIED附加到每个“e”值,并将结果写入test_out.json:

#include <vector>
#include <iostream>
#include <fstream>
#include <nlohmann/json.hpp>

using json = nlohmann::json;

int main() {
std::ifstream in("test.json");
json file = json::parse(in);

for (auto& td : file["b"])
for (auto& prop : td["d"]) {
prop["e"] = prop["e"].get<std::string>() + std::string(" MODIFIED");
}

std::ofstream out("test_out.json");
out << std::setw(4) << file << std::endl;
}
prop["e"] = ...行执行以下三项操作:
  • 通过键"e"
  • 获取属性
  • 使用.get<std::string>()将其强制为字符串,并附加"modified"
  • 将结果写回到prop["e"],它是对嵌套在JSON结构中的对象的引用。
  • 关于c++ - 在C++中访问json数组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59970286/

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