码迷,mamicode.com
首页 > Windows程序 > 详细

C#读取xml文件静态类

时间:2018-01-14 12:05:24      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:pre   gpo   get   sele   pat   函数   gas   cts   write   

    internal static class XmlUtil
    {
        internal static XmlDocument doc;
        internal static string path;

        //在以下情况下执行该函数:1).当class不为static,实例化class时;2).当调用静态字段、方法、属性等时
        //但该函数仅执行一次
        static XmlUtil()
        {
            path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
            path = Path.Combine(path, "Config.xml");
            doc = new XmlDocument();
            doc.Load(path);
        }
        
        internal static void SetValue(string valueName, string value)
        {
            XmlNode node = doc.DocumentElement.SelectSingleNode(valueName);
            node.InnerText = value;
            doc.Save(path);
        }

        internal static string GetValue(string valueName)
        {
            XmlNode node = doc.DocumentElement.SelectSingleNode(valueName);
            string result = node.InnerText;
            return result;
        }

    }

用法:

        static void Main(string[] args)
        {
            string v1 = XmlUtil.GetValue(@"/config/A2/AA1");
            Console.WriteLine(v1);

            v1 = XmlUtil.GetValue(@"A2/AA1");
            Console.WriteLine(v1);

            Console.ReadLine();
        }

 

C#读取xml文件静态类

标签:pre   gpo   get   sele   pat   函数   gas   cts   write   

原文地址:https://www.cnblogs.com/x2009/p/8282471.html

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