当xml里面有命名空间的时候去读问题

http://www.dradio.de/rss/nachrichten   rss 地址

 

用平常的方法读取 ,

当xml里面有命名空间的时候去读问题_第1张图片

会不行.so .

换了个方法读取

当xml里面有命名空间的时候去读问题_第2张图片

就行了.或者用这个方法(未测试)

XmlNamespaceManager mgr = new XmlNamespaceManager(xmlDoc.NameTable);
mgr.AddNamespace("x",
    "http://schemas.openxmlformats.org/officeDocument/2006/extended-properties");foreach (XmlNode node in xmlDoc.SelectNodes("//x:Template", mgr)){
    Console.WriteLine("{0}: {1}", node.Name, node.InnerText);}


你可能感兴趣的:(当xml里面有命名空间的时候去读问题)