3

我正在尝试将 XML 字符串解析为列表,结果计数始终为零。

 string result = "";
            string address = "http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml";

            // Create the web request  
            HttpWebRequest request = WebRequest.Create(address) as HttpWebRequest;

            // Get response  
            using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
            {
                // Get the response stream  
                StreamReader reader = new StreamReader(response.GetResponseStream());

                // Read the whole contents and return as a string  
                result = reader.ReadToEnd();
            }

            XDocument doc = XDocument.Parse(result);

            var ListCurr = doc.Descendants("Cube").Select(curr => new CurrencyType() 
                    { Name = curr.Element("currency").Value, Value = float.Parse(curr.Element("rate").Value) }).ToList();

我要去哪里错了。

4

2 回答 2

5

问题是您正在寻找没有命名空间的元素,而 XML 包含在根元素中:

xmlns="http://www.ecb.int/vocabulary/2002-08-01/eurofxref"

这指定了任何元素的默认命名空间。而且,currencyandrate是元素中的属性Cube——它们不是子元素。

所以你想要这样的东西:

XNamespace ns = "http://www.ecb.int/vocabulary/2002-08-01/eurofxref";
var currencies = doc.Descendants(ns + "Cube")
                    .Select(c => new CurrencyType {
                                     Name = (string) c.Attribute("currency"),
                                     Value = (decimal) c.Attribute("rate")
                                 })
                    .ToList(); 

请注意,因为我将currency属性转换为,所以对于未指定该属性的任何货币string,您最终都会得到一个 nullName属性。如果你想跳过这些元素,你可以WhereSelect.

另请注意,我已将类型更改Valuedecimal而不是float- 您不应将float其用于与货币相关的值。(有关更多详细信息,请参阅此问题。)

此外,您应该考虑使用XDocument.Load来加载 XML:

XDocument doc = XDocument.Load(address);

那么就不需要自己创建WebRequest等了。

于 2013-09-07T08:22:37.523 回答
2
XDocument doc = XDocument.Parse(result);
XNamespace ns = "http://www.ecb.int/vocabulary/2002-08-01/eurofxref";

var ListCurr = doc.Descendants(ns + "Cube")
                    .Where(c=>c.Attribute("currency")!=null) //<-- Some "Cube"s do not have currency attr.
                    .Select(curr => new CurrencyType  
                    { 
                        Name = curr.Attribute("currency").Value, 
                        Value = float.Parse(curr.Attribute("rate").Value) 
                    })
                    .ToList();
于 2013-09-07T08:26:11.213 回答