久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

讀寫xml文件的2個小函數

瀏覽:89日期:2022-06-04 09:30:06
要利用DOM 來存取XML 文件,你必須將XML 文件連結到HTML 網頁上。

#region 讀寫xml文件的2個小函數,2005 4 2 by hyc 
public void SetXmlFileValue(string xmlPath,string AppKey,string AppValue)//寫xmlPath是文件路徑+文件名,AppKey是 Key Name,AppValue是Value
{
XmlDocument xDoc = new XmlDocument();
xDoc.Load(xmlPath);
XmlNode xNode;
XmlElement xElem1;
XmlElement xElem2;

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

xElem1 = (XmlElement)xNode.SelectSingleNode("http://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);
}


public void GetXmlFileValue(string xmlPath,string AppKey,ref string AppValue)//讀xmlPath是文件路徑+文件名,AppKey是 Key Name,AppValue是Value
{
XmlDocument xDoc = new XmlDocument();
xDoc.Load(xmlPath);
XmlNode xNode;
XmlElement xElem1;

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

xElem1 = (XmlElement)xNode.SelectSingleNode("http://add[@key="" + AppKey + ""]");
if ( xElem1 != null )
{
AppValue=xElem1.GetAttribute ("value");
}
else
{
// MessageBox.Show ("There is not any information!");
}

}

#endregion
標簽: XML/RSS
相關文章:
主站蜘蛛池模板: 五峰| 南陵县| 招远市| 仙桃市| 荥经县| 青铜峡市| 兴海县| 韩城市| 新安县| 台南县| 蒲城县| 双桥区| 航空| 盖州市| 聂拉木县| 祁阳县| 义乌市| 和林格尔县| 江川县| 无锡市| 肥乡县| 托里县| 新和县| 永康市| 土默特右旗| 九江市| 西贡区| 张家口市| 岐山县| 旺苍县| 诸暨市| 勐海县| 抚顺县| 松潘县| 肇东市| 顺义区| 甘德县| 昌宁县| 双鸭山市| 兴义市| 福鼎市|