网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > C# > 正文
.Net网站独立配置文件读写方案
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/14
下载{$ArticleTitle}原创论文样式
 string _configurationFilePath = 
System.IO.Path.Combine( 
System.AppDomain.CurrentDomain.BaseDirectory.Replace("/", System.IO.Path.DirectorySeparatorChar.ToString()), 
currentConfigFileName); 
private static SiteSettings _currentConfiguration; 
#endregion 

#region Constructor 
private SiteSettings() 


#endregion 

public static SiteSettings Instance 

get 

if (_currentConfiguration == null) 

Load(); 
if (_currentConfiguration == null) 
_currentConfiguration = new SiteSettings(); 


return _currentConfiguration; 



private static void Load() 


if (!File.Exists(_configurationFilePath)) 

throw new Exception("Can't locate config file! Check the config file path."); 
_currentConfiguration = new SiteSettings(); 

else 

XmlSerializer ser = new XmlSerializer(typeof(SiteSettings)); 
StreamReader reader = new StreamReader(_configurationFilePath); 


// XML反序列化. 
_currentConfiguration = (SiteSettings)ser.Deserialize(reader); 

reader.Close(); 





private static void Load(string configFile)//这个方法如果改为公开方案那么可以在运行时来读取合适的配置文件,这样就避免在布署时修改多个功能项. 

_configurationFilePath = configFile; 
Load(); 


public static void Save() 

XmlSerializer ser = new XmlSerializer(typeof(SiteSettings)); 
FileStream fileOut; 


if (!File.Exists(_configurationFilePath)) 

fileOut = new FileStream(_configurationFilePath, FileMode.CreateNew, FileAccess.ReadWrite, FileShare.ReadWrite); 

else 

fileOut = new FileStream(_configurationFilePath, FileMode.Truncate, FileAccess.ReadWrite, FileShare.ReadWrite); 



// Serialize the object in XML to the given file stream. 
ser.Serialize(fileOut, _currentConfiguration); 

// Close the file stream. 
fileOut.Close(); 

private static string GetBaseDirectory() 

return System.AppDomain.CurrentDomain.BaseDirectory; 

#endregion 


这样我们在站点根目录下面建立一个名为"GBSettings.config"的配置文件就可以对它进行读写操作了. 

它里面的内容: 


Http://Localhost/ 
GBWeb/ 
20 
200 
default 


大家注意到这里面的字段和我们建立的类里面的公开属性是一一对应的, 因此如果需要增加新的可配置项目只要添加相关的公开属性即可,其它的公共代码部分就不用动了, 这个配置文件类使
  • 上一篇资讯: C#中ref和out的使用小结
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号