• C#对三种XML文件的读法


    1.   XML文件的读取1
    XML文件格式如下:
    <?xmlversion="1.0"encoding="utf-8"?>
    <configure>
     <configid="path"value="D:\新建文件夹" />
    </configure>
     
    //xml文件所在路径
    private readonly static string xmlFilePath = @"..\..\DvrOut\path.xml";
       private readonly static XmlDocument document = new XmlDocument();
     
    ///<summary>
            ///获取XML中文件的保存路径
            ///</summary>
            ///<returns></returns>
            public string GetPathByConfigid()
            {
                document.Load(xmlFilePath);
     
                string result = null;
                foreach (XmlNode node in document["configure"])
                {
                    if (node.Attributes["id"].Value.ToString() == "path")
                    {
                        result = node.Attributes["value"].Value.ToString();
                    }
                }
                return result;
            }
            ///<summary>
            ///设置XML中文件的保存路径
            ///</summary>
            ///<param name="text"></param>
            public static void SetConfig(string text)
            {
                document.Load(xmlFilePath);
     
                foreach (XmlNode node in document["configure"])
                {
                    if (node.Attributes["id"].Value.ToString() == "path")
                    {
                        node.Attributes["value"].Value = text;
                    }
                }
                document.Save(xmlFilePath);
            }
    2.   XML文件读取方法2
    XML文件如下:
    <a>   <b>bbb </b>   <c>ccc </c> </a>
    读取b节点
    public string readXml(string xmlpath, string element)//xmlpath是xml的文件名,element是你要查询的节点的名称,就是b
    {
     try
    {
    string value = "";
    XmlDocument doc = new XmlDocument();
    doc.Load(xmlpath);
    XmlNode node = doc.SelectSingleNode("//" + element);
    //如果a外层还有节点就改为(“//外节点//”+ element)
    value = node.InnerText;
    return value;
    }
    catch (Exception e)
    {
    return "";
    }
    }
    3.   XML文件读取方法3
    XML文件如下:
    <a>
     <b1>
        <c>ccc</c>
        <d>ddd</d>
     </b1>
     <b2>
        <e>eee</e>
        <f>fff</f>
     </b2>
    </a>
    private string GetInfoByXML(string xmlFilePath,string nodeName) // xmlFilePath是xml的文件名,nodeName是你要查询的节点的名称,就是c
            {
                document.Load(xmlFilePath);
                string result = string.Empty;
                try
                {
                    XmlNodeList nodeList = document.SelectSingleNode("a").ChildNodes;
                    if (nodeList != null && nodeList[0].ChildNodes != null)
                    {
                        foreach (XmlNode xn in nodeList[0].ChildNodes)
                        {
                            if (xn.Name == nodeName)
                            {
                                result = xn.InnerText;
                                break;
                            }
                        }
                    }
                    return result;
                }
                catch (Exception ex)
                {
                }
    }


    本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/hejialin666/archive/2008/07/10/2634761.aspx

    作者:观海看云个人开发历程知识库 - 博客园
    出处:http://www.cnblogs.com/zhangtao/
    文章版权归本人所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    手机模式input框输入框收起键盘失焦后强制让页面归位
    造一个智能语音音箱!!!太简单了【语音智能管家】
    教你搭建一个花卉识别系统(超级简单)
    【语音智能管家】之语音唤醒(附演示视频)
    conda 安装GPU——CUDA
    筹划了几年,我终于开始实现了---语音智能管家
    我爬取了爬虫岗位薪资,分析后发现爬虫真香
    最近爆火的帅小伙丁真在AI面前颜值多少分?
    生物信息学云论坛第十三场报告会
    生物信息学云论坛第十二场报告会
  • 原文地址:https://www.cnblogs.com/zhangtao/p/1691905.html
Copyright © 2020-2023  润新知