在返回的 XML 上循环遍历地图以获取节点值
Loop through map on returned XML to get node value
在我的 C++ 程序中,我从 XML 文件中吐出节点。我有一个标准架构,输入文件可能不遵循该架构。因此,我需要将节点标题映射到其中包含的信息类型。
#include "pugi/pugixml.hpp"
#include <iostream>
#include <string>
#include <map>
int main()
{
const std::map<std::string, std::string> tagMap {
{"description", "content"}, {"url", "web_address"}
};
pugi::xml_document doca, docb;
std::map<std::string, pugi::xml_node> mapa, mapb;
if (!doca.load_file("a.xml") || !docb.load_file("b.xml")) {
std::cout << "Can't find input files";
return 1;
}
for (auto& node: doca.child("data").children("entry")) {
const char* id = node.child_value("id");
mapa[id] = node;
}
for (auto& node: docb.child("data").children("entry")) {
const char* idcs = node.child_value("id");
if (!mapa.erase(idcs)) {
mapb[idcs] = node;
}
}
// For removed
for (auto& ea: mapa) {
std::cout << "Removed:" << std::endl;
ea.second.print(std::cout);
}
// For added
for (auto& eb: mapb) {
// Loop through tag map
for (auto& kv : tagMap) {
// Try to find the tag name named in second map value
// and associate it to the type of information in first map value
std::cout << "Found" << kv.first;
std::cout << "which has value" << node.child_value(kv.second)
}
}
}
我特别需要帮助的信息在 for (auto& eb: mapb) {
内。在这里,我试图查看收到的 XML 并查看我是否可以将标签与地图中的名称匹配(即内容和 web_address),如果可以,打印节点的值,将其关联它是什么(即描述或 url)。
因为这个编译错误,我没能测试这个,我不明白,因为我已经参考了上面的节点:
g++ -g -Wall -std=c++11 -I include -o main src/main.cpp include/pugi/pugixml.cpp
src/main.cpp:51:38: error: use of undeclared identifier 'node'
std::cout << "which has value" << node.child_value(kv.second)
我的预期输出是这样的:
- 找到具有此值的描述你好!
- 找到 url 具有此值 www.hotmail.com
来自这个输入
<content>Hello!</content>
<web_address>www.hotmail.com</web_address>
错误信息非常清楚:您没有在输出代码的范围内定义 node
。
当您在 for (auto& node: ...)
中定义节点时,它仅在 for
循环的范围内可见。
我不太清楚它应该是什么,但我想你应该用 eb.second.child_value(kv.second)
之类的东西替换 node.child_value(kv.second)
在我的 C++ 程序中,我从 XML 文件中吐出节点。我有一个标准架构,输入文件可能不遵循该架构。因此,我需要将节点标题映射到其中包含的信息类型。
#include "pugi/pugixml.hpp"
#include <iostream>
#include <string>
#include <map>
int main()
{
const std::map<std::string, std::string> tagMap {
{"description", "content"}, {"url", "web_address"}
};
pugi::xml_document doca, docb;
std::map<std::string, pugi::xml_node> mapa, mapb;
if (!doca.load_file("a.xml") || !docb.load_file("b.xml")) {
std::cout << "Can't find input files";
return 1;
}
for (auto& node: doca.child("data").children("entry")) {
const char* id = node.child_value("id");
mapa[id] = node;
}
for (auto& node: docb.child("data").children("entry")) {
const char* idcs = node.child_value("id");
if (!mapa.erase(idcs)) {
mapb[idcs] = node;
}
}
// For removed
for (auto& ea: mapa) {
std::cout << "Removed:" << std::endl;
ea.second.print(std::cout);
}
// For added
for (auto& eb: mapb) {
// Loop through tag map
for (auto& kv : tagMap) {
// Try to find the tag name named in second map value
// and associate it to the type of information in first map value
std::cout << "Found" << kv.first;
std::cout << "which has value" << node.child_value(kv.second)
}
}
}
我特别需要帮助的信息在 for (auto& eb: mapb) {
内。在这里,我试图查看收到的 XML 并查看我是否可以将标签与地图中的名称匹配(即内容和 web_address),如果可以,打印节点的值,将其关联它是什么(即描述或 url)。
因为这个编译错误,我没能测试这个,我不明白,因为我已经参考了上面的节点:
g++ -g -Wall -std=c++11 -I include -o main src/main.cpp include/pugi/pugixml.cpp
src/main.cpp:51:38: error: use of undeclared identifier 'node'
std::cout << "which has value" << node.child_value(kv.second)
我的预期输出是这样的:
- 找到具有此值的描述你好!
- 找到 url 具有此值 www.hotmail.com
来自这个输入
<content>Hello!</content>
<web_address>www.hotmail.com</web_address>
错误信息非常清楚:您没有在输出代码的范围内定义 node
。
当您在 for (auto& node: ...)
中定义节点时,它仅在 for
循环的范围内可见。
我不太清楚它应该是什么,但我想你应该用 eb.second.child_value(kv.second)
node.child_value(kv.second)