我在rapidxml上遇到了一些问题。当我编译我的代码时,没有一个开始标记是included..any,所有的帮助都会受到极大的感谢。
int main(){
xml_document<> doc;
//xml declaration
xml_node<>* decl = doc.allocate_node(node_declaration);
decl->append_attribute(doc.allocate_attribute("version","1.0"));
decl->append_attribute(doc.allocate_attribute("encoding", "utf-8"));
doc.append_node(decl);
// root node
xml_node<>* root = doc.allocate_node(node_element, "root");
root->append_attribute(doc.allocate_attribute(""));
doc.append_node(root);
// child/sibling node
xml_node<>* sibling0 = doc.allocate_node(node_element, "old");
root->append_node(sibling0);
xml_node<>* sibling = doc.allocate_node(node_element,"boy");
root->append_node(sibling );
std::string xmlstring;
print(back_inserter(xmlstring), doc);
cout << xmlstring << endl;}发布于 2013-11-01 11:27:28
除了必要的# using namespace rapidxml;之外,您的代码为我编译并运行良好。
xmlstring包含以下内容:
<?xml version="1.0" encoding="utf-8"?>
<root ="">
<old/>
<boy/>
</root>因为old和boy没有内容,所以它们使用xml空元素标记(<tagname/>),而不是像<tagname></tagname>这样的开始和结束对。
https://stackoverflow.com/questions/19543711
复制相似问题