TinyXml 修改指定节点和增加节点的做法
/*!
* /brief 修改指定节点的文本。
*
* /param XmlFile xml文件全路径。
* /param strNodeName 指定的节点名。
* /param strText 重新设定的文本的值
* /return 是否成功。true为成功,false表示失败。
*/
bool ModifyNode_Text(const std::string& XmlFile,const std::string& strNodeName,const std::string& strText)
{
// 定义一个TiXmlDocument类指针
TiXmlDocument *pDoc= new TiXmlDocument();
if (NULL==pDoc)
{
returnfalse;
}
pDoc->LoadFile(XmlFile);
TiXmlElement *pRootEle= pDoc->RootElement();
if (NULL==pRootEle)
{
returnfalse;
}
TiXmlElement *pNode= NULL;
GetNodePointerByName(pRootEle,strNodeName,pNode);
if (NULL!=pNode)
{
pNode->Clear(); // 首先清除所有文本
// 然后插入文本,保存文件
TiXmlText *pValue= new TiXmlText(strText);
pNode->LinkEndChild(pValue);
pDoc->SaveFile(XmlFile);
returntrue;
}
else
returnfalse;
}
/*!
* /brief 修改指定节点的属性值。
*
* /param XmlFile xml文件全路径。
* /param strNodeName 指定的节点名。
* /param AttMap 重新设定的属性值,这是一个map,前一个为属性名,后一个为属性值
* /return 是否成功。true为成功,false表示失败。
*/
bool ModifyNode_Attribute(const std::string& XmlFile,const std::string& strNodeName,
const std::map<std::string,std::string>&AttMap)
{
typedef std::pair <std::string,std::string> String_Pair;
// 定义一个TiXmlDocument类指针
TiXmlDocument *pDoc= new TiXmlDocument();
if (NULL==pDoc)
{
returnfalse;
}
pDoc->LoadFile(XmlFile);
TiXmlElement *pRootEle= pDoc->RootElement();
if (NULL==pRootEle)
{
returnfalse;
}
TiXmlElement *pNode= NULL;
GetNodePointerByName(pRootEle,strNodeName,pNode);
if (NULL!=pNode)
{
TiXmlAttribute* pAttr= NULL;
std::string strAttName= _T("");
std::string strAttValue= _T("");
for (pAttr= pNode->FirstAttribute(); pAttr; pAttr= pAttr->Next())
{
strAttName = pAttr->Name();
std::map<std::string,std::string>::const_iterator iter;
for (iter=AttMap.begin();iter!=AttMap.end();iter++)
{
if (strAttName==iter->first)
{
pAttr->SetValue(iter->second);
}
}
}
pDoc->SaveFile(XmlFile);
returntrue;
}
else
{
returnfalse;
}
}
对于ModifyNode_Attribute函数,这里稍微介绍一下如何使用,比如对于下面这样一个xml文件:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>我们如果要修改节点的Connection的ip为192.168.0.100,timeout为1000,我们可以这样用:
std::string XmlFile= _T("E://TestTinyxml//example4.xml");下面是增加节点的两个函数:
/*!