我的線沿線的XML結構:這是被讀入一個boost::property_tree
如何循環在提升XML結構:: property_tree
<root>
<SomeElement>
<AnotherElement>
<ElementIWant x="1" y="1"/>
</AnotherElement>
</SomeElement>
<SomeElement>
<AnotherElement>
<ElementIWant x="1" y="1"/>
<ElementIWant x="2" y="1"/>
<ElementIWant x="3" y="1"/>
</AnotherElement>
</SomeElement>
</root>
,有1..Many<SomeElement>
S,然後在該元件內的任意深度有可能是1..Many<ElementIWant>
小號
有一種方法,它們的APPEA順序在<ElementIWant>
直接進行迭代(在一個單一的循環) r在文檔中?
我已經看過equal_range
void iterateOverPoints()
{
const char* test =
"<?xml version=\"1.0\" encoding=\"utf-8\"?><root>"
"<SomeElement>"
"<AnotherElement>"
"<ElementIWant x=\"1\" y=\"1\"/>"
"</AnotherElement>"
"</SomeElement>"
"<SomeElement>"
"<AnotherElement>"
"<ElementIWant x=\"1\" y=\"1\"/>"
"<ElementIWant x=\"2\" y=\"1\"/>"
"<ElementIWant x=\"3\" y=\"1\"/>"
"</AnotherElement>"
"</SomeElement>"
"</root>";
boost::property_tree::ptree message;
std::istringstream toParse(test);
boost::property_tree::read_xml(toParse,result_tree);
//Now we need to locate the point elements and set the x/y accordingly.
std::pair< boost::property_tree::ptree::const_assoc_iterator,
boost::property_tree::ptree::const_assoc_iterator > result =
message.equal_range("ElementIWant");
for(boost::property_tree::ptree::const_assoc_iterator it = result.first;
it != result.second; ++it)
{
std::cout << it->first << " : ";
const boost::property_tree::ptree& x = it->second.get_child("<xmlattr>.x");
const boost::property_tree::ptree& y = it->second.get_child("<xmlattr>.y");
std::cout << x.get_value<int>() << "," << y.get_value<int>() << "\n";
}
return;
}
但是它似乎無法返回節點(我懷疑是因爲equal_range工作在提供的樹節點的水平),這使我對上面的問題。 ...
你試過'equal_range(「SomeElement.AnotherElement.ElementIWant」);'?不過,不確定在有兩個SomeElement副本時會做什麼。 –
從過去的爆炸! @TreborRude當時我認爲它沒有按照我想要的方式行事,或者它不起作用。也許圖書館自此就已經得到了加強 - 但我目前遠離這一領域的代碼。 :) 還是)感謝你的建議。 – Caribou