欢迎来到福编程网,本站提供各种互联网专业知识!

读写xml文件的2个小函数

发布时间:2006-12-22 作者: 来源:转载
要利用DOM来存取XML文件,你必须将XML文件连结到HTML网页上。#region读写xml文件的2个小函数,200542byhycpublicvoidSetXmlFileValue(stringxmlPath,stringAppKey,stringAppValue)//写xmlPath是文件路径+文件名,AppKey是KeyName,AppValue是Value{XmlDocumen
要利用DOM来存取XML文件,你必须将XML文件连结到HTML网页上。

#region读写xml文件的2个小函数,200542byhyc
publicvoidSetXmlFileValue(stringxmlPath,stringAppKey,stringAppValue)//写xmlPath是文件路径+文件名,AppKey是KeyName,AppValue是Value
{
XmlDocumentxDoc=newXmlDocument();
xDoc.Load(xmlPath);
XmlNodexNode;
XmlElementxElem1;
XmlElementxElem2;

xNode=xDoc.SelectSingleNode("//appSettings");

xElem1=(XmlElement)xNode.SelectSingleNode("//add[@key='"+AppKey+"']");
if(xElem1!=null)
{
xElem1.SetAttribute("value",AppValue);
}
else
{
xElem2=xDoc.CreateElement("add");
xElem2.SetAttribute("key",AppKey);
xElem2.SetAttribute("value",AppValue);
xNode.AppendChild(xElem2);
}
xDoc.Save(xmlPath);
}


publicvoidGetXmlFileValue(stringxmlPath,stringAppKey,refstringAppValue)//读xmlPath是文件路径+文件名,AppKey是KeyName,AppValue是Value
{
XmlDocumentxDoc=newXmlDocument();
xDoc.Load(xmlPath);
XmlNodexNode;
XmlElementxElem1;

xNode=xDoc.SelectSingleNode("//appSettings");

xElem1=(XmlElement)xNode.SelectSingleNode("//add[@key='"+AppKey+"']");
if(xElem1!=null)
{
AppValue=xElem1.GetAttribute("value");
}
else
{
//MessageBox.Show("Thereisnotanyinformation!");
}

}

#endregion

相关推荐