我有一个加载的pugi::xml_document
,例如<node></node>
,并想要添加XML文本结构到这个pugi XML文档!
XML文本结构示例:(存储在std::string中)
<cmd name="Test"><tag>some text</tag></cmd>
最终的xml文档应该是这样的:
<node><cmd name="Test"><tag>some text</tag></cmd></node>
在pugixml中最好的方法是什么?
谢谢!
一些加载文档(<node></node>
)的函数:
bool Class::ReadXmlString(std::string xml)
{
try
{
pugi::xml_parse_result parseResult = m_xmlDoc->load(xml.c_str());
return parseResult;
}
catch(std::exception &exp)
{
return false;
}
}
添加功能,例如:<cmd name="Test"><tag>some text</tag></cmd>
bool Class::AddFragment(std::string node, std::string xmlValue)
{
try
{
// temporary document to parse the data from a string
pugi::xml_document doc;
if (!doc.load_buffer(xmlValue.c_str(), xmlValue.length())) return false;
// select node from class member pugi::xml_document
pugi::xml_node xmlNode = m_xmlDoc->select_single_node(("//" + node).c_str()).node();
for (pugi::xml_node child = doc.first_child(); child; child = child.next_sibling())
{
xmlNode.append_copy(child);
}
}
catch(std::exception &exp)
{
return false;
}
}