Your IP : 216.73.216.79


Current Path : /var/www/html/dvs/flowpaper/aspnet/App_Code/
Upload File :
Current File : /var/www/html/dvs/flowpaper/aspnet/App_Code/Config.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Xml;

namespace lib
{
    public class Config
    {
        private XmlDocument _doc;
        private XmlNode _rootNode;

        public Config(String mapPath)
        {
            _doc = new XmlDocument();
            _doc.Load(mapPath + @"config\config.xml");
            _rootNode = _doc.DocumentElement;
        }

        public void setConfig(String key, String value)
        {
            if(value==null || (value!=null && value.Length==0)){return;}

            if (_rootNode.SelectSingleNode(key) == null || (_rootNode.SelectSingleNode(key) != null && _rootNode.SelectSingleNode(key).ChildNodes.Count == 0))
            {
                XmlElement newNode = _doc.CreateElement(key);
                newNode.InnerText = value;
                _rootNode.AppendChild(newNode);
            }
            else
            {
                _rootNode.SelectSingleNode(key).ChildNodes[0].InnerText = value;
            }
        }

        public String getConfig(String key)
        {
            if (_rootNode.SelectSingleNode(key) != null)
                if (_rootNode.SelectSingleNode(key).ChildNodes.Count > 0)
                    return _rootNode.SelectSingleNode(key).ChildNodes[0].Value;
                else
                    return "";
            else
                return null;
        }

        public void SaveConfig(String mapPath)
        {
            _doc.Save(mapPath + @"config\config.xml");
        }
    }
}