访问 属性 树中的多值键
Accessing multi-valued keys in Property Tree
我正在尝试查询 属性 树中的多值键。
我参考了this SO link。
这是我的一段 Xml:
<Element type="MyType">
<Name type="Number">
<KeyFrame time="0">1920</KeyFrame>
<KeyFrame time="3000">1080</KeyFrame>
<KeyFrame time="4000">720</KeyFrame>
</Name>
</Element>
代码如下:
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <sstream>
#include <iostream>
using boost::property_tree::ptree;
int main() {
std::stringstream ss("<Element type=\"MyType\">"
"<Name type=\"Number\">"
"<KeyFrame time=\"0\">1920</KeyFrame>"
"<KeyFrame time=\"3000\">1080</KeyFrame>"
"<KeyFrame time=\"4000\">720</KeyFrame></Name>"
"</Element>");
ptree pt;
boost::property_tree::read_xml(ss, pt);
auto& root = pt.get_child("Element");
for (auto& child : root.get_child("Name"))
{
if(child.first == "KeyFrame")
{
std::cout<<child.second.get<int>("<xmlattr>.time", 0)<<" : "<<child.second.data()<<std::endl;
}
}
}
在这里,我可以通过指定类型 int
来访问 <xmlattr>.time
,但是使用 child.second.data()
.
在字符串中检索值
我也可以指定值的类型吗?像 child.second.get<int>
这样的东西,这样我就可以得到 ex int、double 等类型的值,而不是字符串。
我建议 get_value<>
:
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <iostream>
#include <sstream>
std::string const sample = R"(<Element type="MyType">
<Name type="Number">
<KeyFrame time="0">1920</KeyFrame>
<KeyFrame time="3000">1080</KeyFrame>
<KeyFrame time="4000">720</KeyFrame>
</Name>
</Element>)";
using boost::property_tree::ptree;
int main() {
std::stringstream ss(sample);
ptree pt;
boost::property_tree::read_xml(ss, pt);
auto &root = pt.get_child("Element");
for (auto &child : root.get_child("Name")) {
if (child.first == "KeyFrame") {
auto node = child.second;
std::cout << node.get<int>("<xmlattr>.time", 0) << " : "
<< node.get_value<int>() << std::endl;
}
}
}
版画
0 : 1920
3000 : 1080
4000 : 720
我正在尝试查询 属性 树中的多值键。
我参考了this SO link。
这是我的一段 Xml:
<Element type="MyType">
<Name type="Number">
<KeyFrame time="0">1920</KeyFrame>
<KeyFrame time="3000">1080</KeyFrame>
<KeyFrame time="4000">720</KeyFrame>
</Name>
</Element>
代码如下:
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <sstream>
#include <iostream>
using boost::property_tree::ptree;
int main() {
std::stringstream ss("<Element type=\"MyType\">"
"<Name type=\"Number\">"
"<KeyFrame time=\"0\">1920</KeyFrame>"
"<KeyFrame time=\"3000\">1080</KeyFrame>"
"<KeyFrame time=\"4000\">720</KeyFrame></Name>"
"</Element>");
ptree pt;
boost::property_tree::read_xml(ss, pt);
auto& root = pt.get_child("Element");
for (auto& child : root.get_child("Name"))
{
if(child.first == "KeyFrame")
{
std::cout<<child.second.get<int>("<xmlattr>.time", 0)<<" : "<<child.second.data()<<std::endl;
}
}
}
在这里,我可以通过指定类型 int
来访问 <xmlattr>.time
,但是使用 child.second.data()
.
我也可以指定值的类型吗?像 child.second.get<int>
这样的东西,这样我就可以得到 ex int、double 等类型的值,而不是字符串。
我建议 get_value<>
:
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <iostream>
#include <sstream>
std::string const sample = R"(<Element type="MyType">
<Name type="Number">
<KeyFrame time="0">1920</KeyFrame>
<KeyFrame time="3000">1080</KeyFrame>
<KeyFrame time="4000">720</KeyFrame>
</Name>
</Element>)";
using boost::property_tree::ptree;
int main() {
std::stringstream ss(sample);
ptree pt;
boost::property_tree::read_xml(ss, pt);
auto &root = pt.get_child("Element");
for (auto &child : root.get_child("Name")) {
if (child.first == "KeyFrame") {
auto node = child.second;
std::cout << node.get<int>("<xmlattr>.time", 0) << " : "
<< node.get_value<int>() << std::endl;
}
}
}
版画
0 : 1920
3000 : 1080
4000 : 720