1. 程式人生 > >C#針對xml文件轉化Dictionary的方法

C#針對xml文件轉化Dictionary的方法

www. zone strong xml文件 ebo .sh 變量 html 瀏覽器

本文實例講述了C#針對xml文件轉化Dictionary的方法。分享給大家供大家參考。具體實現方法如下:

下面是xml文件:


代碼如下:

<?xml version=”1.0″ encoding=”utf-8″ ?>

<nodes>

<國土局>

<name>市局國土資源局</name>

<code>330</code>

<受理 telephone=”88205156″>萍,倩</受理>

<審核 personId=”48e1bca3-b0f5d0fec89″>友</審核>

<審定>123</審定>

<BELONGSYSTEM>37001</BELONGSYSTEM>

<DEPTID>10080100030</DEPTID>

<SERVICECODE>4e58a6f1</SERVICECODE>

</國土局>

<國土局>

<name>縣國土資源局</name>

<code>3321</code>

<受理 telephone=”13819655058″>晨</受理>

<審核 personId=”f7351d0f-b197-0a0fc685f3ac”>輝</審核>

<審定>456</審定>

<BELONGSYSTEM>123</BELONGSYSTEM>

<DEPTID>00100033</DEPTID>

<SERVICECODE>

204cdd0b

</SERVICECODE>

</國土局>

</nodes>

下面是相關的獲取方法:


代碼如下:

/// <summary>

/// 獲得受理信息

/// </summary>

/// <param name=”p_shixianCode”>市縣編碼</param>

/// <returns>受理信息</returns>

public static Dictionary<string,string> ShouLiInfo(string p_shixianCode)

{

XDocument xd = null;

string xmlPath = “config.xml”;

xd = XDocument.Load(xmlPath);//xml存放路徑

Dictionary<string, string> pDic = new Dictionary<string, string>();

var info = from t in xd.Root.Descendants(“國土局”).Where(p => p.Element(“code”).Value == p_shixianCode) select new { name = t.Element(“name”).Value, code = t.Element(“code”).Value, shouli = t.Element(“受理”).Value, telephone = t.Element(“受理”).Attribute(“telephone”).Value, shenhe = t.Element(“審核”).Value, personId = t.Element(“審核”).Attribute(“personId”).Value, shending = t.Element(“審定”).Value, DEPTID = t.Element(“DEPTID”).Value, BELONGSYSTEM = t.Element(“BELONGSYSTEM”).Value, SERVICECODE = t.Element(“SERVICECODE”).Value };

foreach (var item in info)

{

pDic.Add(“name”, item.name);

pDic.Add(“code”, item.code);

pDic.Add(“shouliPerson”, item.shouli);

pDic.Add(“telephone”, item.telephone);

pDic.Add(“shenhePerson”, item.shenhe);

pDic.Add(“shenhepersonId”, item.personId);

pDic.Add(“shendingPerson”, item.shending);

pDic.Add(“DEPTID”, item.DEPTID);

pDic.Add(“BELONGSYSTEM”, item.BELONGSYSTEM);

pDic.Add(“SERVICECODE”, item.SERVICECODE);

}

return pDic;

}

除聲明外,跑步客文章均為原創,轉載請以鏈接形式標明本文地址
C#針對xml文件轉化Dictionary的方法

本文地址: http://www.paobuke.com/develop/c-develop/pbk23189.html






相關內容

技術分享圖片WinForm通過操作註冊表實現限制軟件使用次數的方法技術分享圖片C#實現在應用程序間發送消息的方法示例技術分享圖片C#實現的文件操作封裝類完整實例【刪除,移動,復制,重命名】技術分享圖片當用戶退出點擊瀏覽器後退仍可回到原來頁面的解決方案
技術分享圖片基於C#代碼實現九宮格算法橫豎都等於4技術分享圖片C#編程自學之數據類型和變量二技術分享圖片C#實現統計字數功能的方法技術分享圖片C#使用鉤子獲得按鍵信息的方法

C#針對xml文件轉化Dictionary的方法