Csharp读写XML

前端之家收集整理的这篇文章主要介绍了Csharp读写XML前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

保存
XmlDocumentxmlDoc=newXmlDocument();
xmlDoc.Load("Initialize.xml");
XmlNodeListnodeList=xmlDoc.SelectSingleNode("ComValue").ChildNodes;//获取节点的所有子节点
foreach(XmlNodexninnodeList)//遍历所有子节点
{
XmlElementxe=(XmlElement)xn;//将子节点类型转换为XmlElement类型
if(xe.GetAttribute("name")=="PortName")
{
xe.InnerText=com.PortName.ToString();
}
if(xe.GetAttribute("name")=="BaudRate")
{
xe.InnerText=com.BaudRate.ToString();
}
if(xe.GetAttribute("name")=="Parity")
{
xe.InnerText=com.Parity.ToString();
}
if(xe.GetAttribute("name")=="StopBits")
{
xe.InnerText=com.StopBits.ToString();
}
}
xmlDoc.Save("Initialize.xml");//保存。

读取

XmlDocumentxmlDoc=newXmlDocument();
xmlDoc.Load("Initialize.xml");
XmlNodeListnodeList=xmlDoc.SelectSingleNode("ComValue").ChildNodes;//获取节点的所有子节点
foreach(XmlNodexninnodeList)//遍历所有子节点
{

XmlElementxe=(XmlElement)xn;//将子节点类型转换为XmlElement类型if(xe.GetAttribute("name")=="PortName"){com.PortName=xe.InnerText;}if(xe.GetAttribute("name")=="BaudRate"){com.BaudRate=int.Parse(xe.InnerText);}if(xe.GetAttribute("name")=="Parity"){com.Parity=Parity.None;}if(xe.GetAttribute("name")=="StopBits"){com.StopBits=StopBits.One;}}

原文链接:https://www.f2er.com/xml/299109.html

猜你在找的XML相关文章