溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Csharp讀寫XML

發(fā)布時(shí)間:2020-09-19 18:48:02 來源:網(wǎng)絡(luò) 閱讀:427 作者:shi_lin_lin 欄目:編程語言

保存
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load("Initialize.xml");
XmlNodeList nodeList = xmlDoc.SelectSingleNode("ComValue").ChildNodes;//獲取 節(jié)點(diǎn)的所有子節(jié)點(diǎn)
foreach (XmlNode xn in nodeList)//遍歷所有子節(jié)點(diǎn)
{
XmlElement xe = (XmlElement)xn;//將子節(jié)點(diǎn)類型轉(zhuǎn)換為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");//保存。

讀取

XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load("Initialize.xml");
XmlNodeList nodeList = xmlDoc.SelectSingleNode("ComValue").ChildNodes;//獲取 節(jié)點(diǎn)的所有子節(jié)點(diǎn)
foreach (XmlNode xn in nodeList)//遍歷所有子節(jié)點(diǎn)
{

XmlElement xe = (XmlElement)xn;//將子節(jié)點(diǎn)類型轉(zhuǎn)換為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;
}
}

 

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI