码迷,mamicode.com
首页 > 其他好文 > 详细

c#读取带有命名空间的XML

时间:2014-07-26 00:29:26      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   os   文件   io   

XML文件内容

<?xml version="1.0" standalone="no"?>
<svg width="1709px" height="886px"  onload="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;
            }
            
        }
    }

c#读取带有命名空间的XML,布布扣,bubuko.com

c#读取带有命名空间的XML

标签:des   style   blog   http   color   os   文件   io   

原文地址:http://www.cnblogs.com/godxiangyu/p/3868352.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!