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

xml读取 避开并发

时间:2014-08-05 18:59:19      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   使用   os   io   

 

很多地方读取文件可能会出现并发现象 处理:

使用FileMode.Open, FileAccess.Read, FileShare.ReadWrite 避开并发

 public static List<ConfigXml> GetXmlByTypeName(XmlConfigType type)
        {
            string path = string.Empty;
            try
            {
                path = HttpRuntime.BinDirectory + @"/xml/config.xml";
            }
            catch (Exception e)
            {
                path = AppDomain.CurrentDomain.BaseDirectory + @"/xml/config.xml";
            }
            FileStream file = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
            XmlDocument doc = new XmlDocument();
            doc.Load(file);

            XmlElement root = doc.DocumentElement;
            XmlNodeList dataNode = doc.SelectSingleNode(String.Format("root/type[@name=‘{0}‘]", type.ToString())).ChildNodes;
             List<ConfigXml> list = new List<ConfigXml>();
            foreach (XmlElement item in dataNode)
            {
                ConfigXml configXml = new ConfigXml();
                configXml.Name = item.GetAttribute("name");
                configXml.OnOff = item.InnerXml.Trim();
                configXml.DateType = item.GetAttribute("dateType");
                configXml.UrlValue =item.GetAttribute("Path");
                configXml.IsBeingUsed = bool.Parse(item.GetAttribute("name"));
              
                list.Add(configXml);
            }
            file.Close();
        
            return list;
           
        }

 

xml读取 避开并发,布布扣,bubuko.com

xml读取 避开并发

标签:des   style   blog   http   color   使用   os   io   

原文地址:http://www.cnblogs.com/bit-by-bit/p/3892881.html

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