在 C# 中从 XML 中读取特定值

Reading Specific Values From XML in C#

我使用 API 到 return 温度值 XML 格式并将它们写入文本文件。我的下一步是从 XML 文件中读取值以用于我的程序。这是值的格式;

<temperature value="21.37" min="18.89" max="22.78" unit="metric">
</temperature>
<humidity value="68" unit="%">
</humidity>
<pressure value="1019" unit="hPa">
</pressure>

我想访问温度值,但我不确定如何通过从文本文件中读取来做到这一点,尤其是考虑到文本文件比我需要的要长得多。访问我想要的值的最有效方法是什么?

编辑:

<current>
  <city id="" name="">
    <coord lon="-0.45" lat="52.19">
    </coord>
    <country>GB</country>
    <sun rise="2016-08-16T04:48:13" set="2016-08-16T19:22:26">
    </sun>
  </city>
  <temperature value="22.06" min="19.44" max="23.89" unit="metric">
  </temperature>
  <humidity value="67" unit="%">
  </humidity>
  <pressure value="1019" unit="hPa">
  </pressure>
  <wind>
    <speed value="2.57" name="Light breeze">
    </speed>
    <gusts value="6.17">
    </gusts>
    <direction value="73" code="ENE" name="East-northeast">
    </direction>
  </wind>
  <clouds value="24" name="few clouds">
  </clouds>
  <visibility>
  </visibility>
  <precipitation mode="no">
  </precipitation>
  <weather number="801" value="few clouds" icon="02d">
  </weather>
  <lastupdate value="2016-08-16T10:44:02">
  </lastupdate>
</current>

您可以使用 SelectSingleNode,前提是您使用 XDocument 加载了 XML。

看看https://msdn.microsoft.com/en-ca/library/fb63z0tw.aspx

一种方式可以是:

var result = XDocument.Load("data.xml").Root
                      .Element(/*.... the rest of the hierarchy.. */)
                      .Element("temperature")
                      .Attribute("value").Value;

如果您不想指定元素的完整路径,您可以:

var result = XDocument.Load("data.xml").Root
                      .Descendants("temperature")
                      .Select(element => element.Attribute("value").Value).FirstOrDefault();
var xml = XElement.Parse("<root><temperature value=\"21.37\" min=\"18.89\" max=\"22.78\" unit=\"metric\"></temperature><humidity value=\"68\" unit=\"%\"></humidity><pressure value=\"1019\" unit=\"hPa\"></pressure></root>"); // this line is just to test. You can use what you are getting from API Call.

var result =   xml.Elements("temperature")
                            .Select(c => c.Attribute("value").Value); // the attribute value
w=12=stuse w=13=sh linyash=11=sh w=10=sh