代码之家  ›  专栏  ›  技术社区  ›  msc

尝试使用C读取特定的Xml值#

  •  0
  • msc  · 技术社区  · 6 年前

    数据.xml

    <?xml version="1.0" standalone="yes"?>
    <DataSet1 xmlns="http://tempuri.org/DataSet1.xsd">
      <Language>
        <Id>001</Id>
        <English>"Welcome to India"</English>
        <German>"Willkommen in Indien"</German>
      </Language>
    </DataSet1>
    

    如何读取 Id

    我的努力:

    XmlDocument doc = new XmlDocument();
    XmlReader reader = XmlReader.Create(@"D:\data.xml");
    
    while(reader.Read())
    {
        reader.MoveToContent();
        if (reader.IsStartElement("DataSet1"))
        {
            reader.ReadToDescendant("Language");
    
            string str2 = reader.Name.ToString();
            MessageBox.Show(str2);
        }
    }
    
    2 回复  |  直到 6 年前
        1
  •  5
  •   Jon Skeet    6 年前

    我强烈建议您使用linqtoxml,这是一个比linux简单得多的API XmlDocument Id

    using System;
    using System.Xml.Linq;          
    
    public class Program
    {
        public static void Main()
        {
            XDocument doc = XDocument.Load("test.xml");
            XNamespace ns = "http://tempuri.org/DataSet1.xsd";
    
            string id = doc.Root           // From the root...
                .Element(ns + "Language")  // select the Language direct child...
                .Element(ns + "Id")        // and the Id child of that...
                .Value;                    // and then take the text value
            Console.WriteLine(id);
        }
    }
    

    显然,如果您的XML不只是一个 Language 你需要选择正确的元素,等等。你应该阅读 LINQ to XML documentation 更多信息。

        2
  •  1
  •   Shmosi    6 年前

    使用XmlDocument,如果需要进一步帮助,请留言:)

    XmlDocument xdoc = new XmlDocument("YourXmlString");
    
    XmlNodeList xNodes = xdoc.GetElementsByTagName("Id");
    
    string Wished = xNodes[0].InnerText;
    

    一点解释:

    我经常推荐XmlDocument,因为我真的很喜欢自己使用它,而且它还有一些非常好的特性需要研究。除此之外,很容易获取或遍历节点