作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用cpp构建一个项目。
我的项目需要一个文件来做一些配置,我决定使用一个 JSON 格式的文件。下面是一个例子:
{
"agentname":"agent1",
"server":[
{"ip":"192.168.0.1"},
{"port":"9999"}
]
}
现在我需要读取这个文件,所以我使用 JSON_Spirit。这是我的代码:
ifstream conf("config", ios::in);
json_spirit::mValue mvalue;
json_spirit::read(conf, mvalue);
json_spirit::mObject obj = mvalue.get_obj();
string agentname = obj.find("agentname")->second.get_str();
在代码之后,我可以得到agentname
。
但是我不知道如何获取ip
和port
。
我试过这样:
string ip = obj.find("server")->second.find("ip")->second.get_str();
我认为它应该是这样的,但是上面的代码不起作用。
最佳答案
我发现使用 json_spirit 有一些实用程序访问器函数会有所帮助。另外,请注意检查文档的实际内容:
这会起作用:
#include <json_spirit.h>
#include <iostream>
#include <sstream>
using namespace std;
const string test_str =
R"json({
"agentname":"agent1",
"server":[
{"ip":"192.168.0.1"},
{"port":"9999"}
]
}
)json";
json_spirit::mValue read_document(std::istream& is) {
json_spirit::mValue result;
auto ok = json_spirit::read(is, result);
if (!ok) {
throw std::runtime_error { "invalid json" };
}
return result;
}
const json_spirit::mValue& get_object_item(const json_spirit::mValue& element, const std::string& name)
{
return element.get_obj().at(name);
}
const json_spirit::mValue& get_array_item(const json_spirit::mValue& element, size_t index)
{
return element.get_array().at(index);
}
int main()
{
istringstream conf(test_str);
auto doc = read_document(conf);
const auto& agentname = get_object_item(doc, "agentname");
const auto& server = get_object_item(doc, "server");
const auto& ip_holder = get_array_item(server, 0);
const auto& ip = get_object_item(ip_holder, "ip");
const auto& port = get_object_item(get_array_item(server, 1), "port");
cout << agentname.get_str() << endl
<< ip.get_str() << endl
<< port.get_str() << endl;
return 0;
}
预期输出:
agent1
192.168.0.1
9999
关于c++ - JSON_Spirit : how to get value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30350851/
我正在使用cpp构建一个项目。 我的项目需要一个文件来做一些配置,我决定使用一个 JSON 格式的文件。下面是一个例子: { "agentname":"agent1", "server
有人能指出我正确的方向吗?我不是 C++ 或 VS 开发人员,但我正在尝试编译一个项目,但出现了上述错误。我不知道为什么编译器正在寻找该文件或 Debug 文件夹是关于什么的(尽管我可以猜到)。有人可
我是一名优秀的程序员,十分优秀!