簡單讀取XML檔案中的值

暖楓無敵發表於2012-01-09
一個名為test.xml檔案如下:

<?xml version="1.0" encoding="utf-8" ?>
<Propertys Name ="myName">
       <Data Value="11"/>
       <Data Value="22"/>
       <Data Value="33"/>
</Propertys>

以下是讀取程式碼:
using System.Xml.Linq;
using System.Xml;
using System.Text;

StringBuilder sb = new StringBuilder();
string[] PropertyValue;
XmlDocument xml = new XmlDocument();
xml.Load(Server.MapPath("test.xml"));
XmlNodeList xn = xml.SelectNodes("Propertys/Data");
foreach (XmlNode xn1 in xn)
{
      sb.Append(xn1.Attributes["Value"].Value+",");
}
PropertyValue = sb.ToString().TrimEnd(',').Split(',');
foreach (string s in PropertyValue)
{
     Response.Write(s+"</br>");
}

執行結果為:

11
22
33



相關文章