1

使用来自欧洲中央银行的此 URL:

www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml

我想将货币符号和汇率导入字典或对象。我已经将它读入了一个 xml 文档,但我在挑选节点属性时遇到了麻烦。

谢谢

string xmlString;
        using (var client = new WebClient())
        {
            xmlString = client.DownloadString("http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml");
        }

        var xmlDoc = new XmlDocument();
        xmlDoc.LoadXml(xmlString);

        foreach(XmlNode node  in xmlDoc.SelectNodes("//*/Cube/@currency"))
        {
            // add currency and rate to dictionary
        }
4

4 回答 4

6

我认为问题出在您的 xPath 选择器上。

的值"//*[@currency]"将选择所有具有“货币”属性的元素

class Program
{
    public static void Main(string[] args)
    {
        List<Rate> rates = new List<Rate>();

        var doc = new XmlDocument();
        doc.Load(@"http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml");

        XmlNodeList nodes = doc.SelectNodes("//*[@currency]");

        if (nodes != null)
        {
            foreach (XmlNode node in nodes)
            {
                var rate = new Rate()
                           {
                              Currency = node.Attributes["currency"].Value,
                              Value = Decimal.Parse(node.Attributes["rate"].Value, NumberStyles.Any, new CultureInfo("en-Us"))
                           };
                rates.Add(rate);
            }
        }
    }
}
class Rate
{
    public string Currency { get; set; }
    public decimal Value { get; set; }
}
于 2018-06-26T03:58:45.173 回答
1

如果 XPath 表达式不包含前缀,则假定名称空间 URI 是空名称空间。如果您的 XML 包含默认命名空间,您仍必须向 XmlNamespaceManager 添加前缀和命名空间 URI;否则,您将不会选择任何节点。

使用这个重载XmlNode.SelectNodes(String, XmlNamespaceManager)

XmlNamespaceManager nsmgr = new XmlNamespaceManager(xmlDoc.NameTable);
nsmgr.AddNamespace("ecb", "http://www.ecb.int/vocabulary/2002-08-01/eurofxref");
foreach (XmlNode node in xmlDoc.SelectNodes("//ecb:Cube[@currency]", nsmgr))
于 2018-06-26T03:45:57.930 回答
1
        string xmlString;
        using (var client = new WebClient())
        {
            xmlString = client.DownloadString("http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml");
        }

    var doc = XDocument.Parse(xmlString);
    XNamespace ns = "http://www.ecb.int/vocabulary/2002-08-01/eurofxref";
    var values = doc
        .Root
        .Element(ns + "Cube")             
        .Element(ns + "Cube")
        .Elements(ns + "Cube")
        .ToDictionary(e => e.Attribute("currency"), e => (double) e.Attribute("rate"));
于 2018-06-26T03:36:02.020 回答
0
class Program
{
    static void Main(string[] args)
    {
        List<Rate> rates = new List<Rate>();

        var doc = new XmlDocument();
        doc.Load(@"http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml");

        XmlNodeList nodes = doc.SelectNodes("/*/*/*/*");

        for (int i = 0; i < nodes.Count; i++)
        {
            var rate = new Rate()
            {
                Currency = nodes[i].Attributes[0].Value,
                Value = Decimal.Parse(nodes[i].Attributes[1].Value)
            };

            rates.Add(rate);
        }
        Console.WriteLine();
    }
}

class Rate
{
    public string Currency { get; set; }
    public decimal Value { get; set; }
}
于 2018-06-26T03:25:52.677 回答