使用C#中的节点值从XML读取数据

时间:2018-05-27 05:47:46

标签: c# xml

我知道这个问题被问了很多次。但我还没有找到合适的答案。

我有一个XML文件,其中包含一些国家/地区代码和国家/地区名称。在这里。

   <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <CountryCodeNames>
      <Country CountryID="0" EnglishCountryName="NOT DEFINED" ArabicCountryName="NOT DEFINED"/>
      <Country CountryID="001" EnglishCountryName="ALGERIA    " ArabicCountryName="الجزائر"/>
      <Country CountryID="002" EnglishCountryName="ANGOLA    " ArabicCountryName="       انجولا "/>
      <Country CountryID="003" EnglishCountryName="BOTSWANA     " ArabicCountryName="       بوتسوانا "/>
      <Country CountryID="004" EnglishCountryName="BURUNDI     " ArabicCountryName="    بوروندى "/>
      <Country CountryID="005" EnglishCountryName="CAMERON REPUBLIC     " ArabicCountryName="     جمهوريه الكمرون  "/>
      <Country CountryID="006" EnglishCountryName="CENTRAL AFRICAN REP.   " ArabicCountryName="جمهوريهافريقياالوسطي "/>
      <Country CountryID="007" EnglishCountryName="CHAD   " ArabicCountryName="     تشاد  "/>
      <Country CountryID="008" EnglishCountryName="CONGO (BRAZZAVILLE)    " ArabicCountryName="  )الكونغوا(برازافيل       "/>
      <Country CountryID="009" EnglishCountryName="CONGO (DRC)" ArabicCountryName="جمهورية الكنغوليس"/>
      <Country CountryID="010" EnglishCountryName="BENIN (PEOPLE REPUB)       " ArabicCountryName="جمهوريه بنين الشعبيه"/>
      <Country CountryID="011" EnglishCountryName="ETHIOPIA     " ArabicCountryName="     أثيوبيا "/>
      <Country CountryID="012" EnglishCountryName="GABON    " ArabicCountryName="     جمهوريه الجابون  "/>
      <Country CountryID="013" EnglishCountryName="GHANA   " ArabicCountryName="        غانا "/>
      <Country CountryID="014" EnglishCountryName="GUINEA       " ArabicCountryName="    غينيا "/>
</CountryCodeNames>

现在在我的Windows窗体中我获得了CountryID,我想根据我的CountryID从这个XML文件中读取EnglishCountryName。到目前为止,我已经尝试过了。不太了解XML文件读取。请帮忙。

string natxmlcode = crdv4.smartcardData.NationalityCode.ToString();
                XmlDocument xd = new XmlDocument();
                string xmlpath = @"D:\CountriesNameList.xml";
                xd.Load(xmlpath);
                string nationality = xd.SelectSingleNode("CountryCodeNames/CountryID="+natxmlcode+"/EnglishCountryName").InnerText;

&#39; natxmlcode&#39;是CountryID。

2 个答案:

答案 0 :(得分:0)

我建议使用XDocument;它比XmlDocument更容易和更清洁。

要选择名称,请使用以下代码:

string natcode = crdv4.smartcardData.NationalityCode.ToString();
string xmlpath = @"D:\CountriesNameList.xml";
XDocument xd = XDocument.Load(xmlpath);

string nationality = xd.Descendants("Country")
       .FirstOrDefault(c => c.Attribute("CountryID").Value.Equals(natcode))
       .Attribute("EnglishCountryName").Value;

注意:您需要System.Xml.Linq命名空间。

答案 1 :(得分:0)

Sebastian的回答在VS 2013中确实有所帮助。但我想在VS 2008中使用.Net framework 2.0获得相同的功能。所以这就是我所做的并且工作正常。感谢Sam Axe。

string xmlpath = @"D:\CountriesNameList.xml";
XmlDocument xml = new XmlDocument();
xml.Load(xmlpath);
XmlNode node = xml.SelectSingleNode("//CountryCodeNames/Country[@CountryID="+natxmlcode+"]");
string nationality = node.Attributes[1].Value.ToString();