首页 > 代码库 > c#读取带有命名空间的XML
c#读取带有命名空间的XML
XML文件内容
<?xml version="1.0" standalone="no"?><svg width="1709px" height="886px" onl oad="init(evt)" viewBox="0 0 1800 900" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid"> <rect width="1709px" height="886px" fill="GradientInactiveCaption" /> <rect x="88" y="369" width="1200px" height="15px" stroke-width="1" stroke="Black" fill="url(#79)" /> <rect id="REED.ShapeElement.TrapezoidR" x="491" y="283" width="80px" height="185px" stroke-width="1" stroke="Transparent" fill="Transparent" /></svg>
以下是读取方法:
class Program { static void Main(string[] args) { try { XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load("F:\\汽机本体2.svg"); XmlNamespaceManager nsmgr = new XmlNamespaceManager(xmlDoc.NameTable); nsmgr.AddNamespace("ns", "http://www.w3.org/2000/svg"); XmlNode xn = xmlDoc.SelectSingleNode("//ns:svg", nsmgr); XmlNodeList xnl = xn.ChildNodes; Console.WriteLine("读取成功"); Console.ReadLine(); } catch (Exception ex) { Console.WriteLine(ex.ToString()); Console.ReadLine(); throw; } } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。