我需要为我的输出创建xml。 我有一个索引名称列表。 我想以一种格式在xml文件中填充它。
即
<response>
<indexes>
<index>abc</index>
<index>xyz</index>
<index>pqr</index>
</indexes>
</response>
我的矢量index_list中有列表。
任何人都可以帮助我。
我已经尝试了一些代码。
boost::property_tree::ptree tree;
stringstream output;
for (std::vector<string>::const_iterator it = index_list.begin();
it != index_list.end(); it++) {
std::cout << *it << "\n";
tree.put("response.indexes.index", *it);
}
if (format == "xml") {
write_xml(output, tree);
} else {
write_json(output, tree);
}
当我运行上面的代码时。我只在列表中获得姓氏。
<response>
<indexes>
<index>pqr</index>
</indexes>
</response>
答案 0 :(得分:1)