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

解析XML文件

时间:2016-05-27 14:31:52      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

获取XML文件

        private XmlDocument GetDoc(string strpath)
        {
            if (System.IO.File.Exists(strpath) == true)
            {
                XmlDocument document = new XmlDocument();
                document.Load(strpath);//加载xml文档
                return document;
            }
            else
            {
                return null;
            }

        }

解析XML

XmlNode newNode = document.DocumentElement.SelectSingleNode("//layer[@name=‘" + 名称+ "‘]");
if (newNode != null)
{
  string aliasName = newNode.Attributes["别名"].Value.ToString();
  string strDes = newNode.Attributes["描述"].Value.ToString(); }

 

XmlNode SymbologyNode = NameNode.SelectSingleNode("//Symbology[@FieldValue=‘" + strieldValue + "‘]");

 

解析XML文件

标签:

原文地址:http://www.cnblogs.com/lee24789229/p/5534352.html

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