大尾巴狼

所谓大尾巴狼,就是装腔作势。

XML遭遇缺省Namespace

缺省命名空间也要定义名字,并使用它。
reference: http://support.microsoft.com/kb/318545/zh-cn
 
    Log.ShowMsg("Load {0}",dataFile);
    XmlDocument xmlDoc=new XmlDocument();
    xmlDoc.Load(dataFile);
 
    XmlNamespaceManager nm=new XmlNamespaceManager(xmlDoc.NameTable);
    nm.AddNamespace("c","http://tempuri.org/Cingular Service Plan.xsd");
 
    XmlElement rootNode=xmlDoc.DocumentElement;
    XmlNodeList list=rootNode.SelectNodes("/c:CINGULAR/c:CINGULARCATALOG/c:CATALOG/c:NATIONS",nm);
    Console.WriteLine("Count:"+list.Count.ToString());

posted on 2006-11-15 14:47  大尾巴狼  阅读(502)  评论(0编辑  收藏  举报

导航