欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

.Net MVC網(wǎng)站中配置文件的讀寫

 更新時間:2016年08月15日 11:52:50   作者:洞庭夕照  
這篇文章主要為大家詳細介紹了.Net MVC 網(wǎng)站中配置文件的讀寫,感興趣的小伙伴們可以參考一下

網(wǎng)站中有很多需要設(shè)置的內(nèi)容,像網(wǎng)站信息,注冊設(shè)置,上傳設(shè)置等。如果保存在數(shù)據(jù)庫中需要單獨建張表,表中只有一條記錄,這樣會讓數(shù)據(jù)庫很臃腫,而且頻繁存取數(shù)據(jù)庫的效率也是個問題。而保存在config文件里是個不錯選擇,而且?guī)в芯彺婀δ埽?nbsp;

我們可以在web.config的配置節(jié)寫入配置。 

<configuration>
 <configSections>
 <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
 <!--這里可以定義配置節(jié) -->
 <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
 </configSections> 

但是把大量的配置都寫入這里也會造成web.config的臃腫,可以采用把配置節(jié)定義在這里,把具體配置信息保存在其他文件中。 

以上傳配置信息為例,看一下理想的結(jié)構(gòu) 

Config\Upload.config的內(nèi)容 

1、配置的元素。采用<add />的形式,是一個鍵和值得表示形式。<add key="MaxSize" value="1500000" />。 
2、元素的集合,里面定義一系列的元素。<UploadConfig>……</UploadConfig> 
3、自定義節(jié),表示自定義的一個節(jié)點。<section name="UploadConfig"  type="Ninesky.Models.Config.UploadConfig, Ninesky.Models"/> 

name:節(jié)點名,type:處理節(jié)點的類行,逗號前是類名,逗號后是縮在程序集。

我們要創(chuàng)建這個類來管理配置 

一、創(chuàng)建鍵,值元素類。 

里面只有兩個讀寫屬性key和value,內(nèi)容非常簡單 

using System.Configuration;

namespace Ninesky.Models.Config
{
 /// <summary>
 /// 鍵值元素類
 /// <remarks>
 /// 創(chuàng)建:2014.03.09
 /// </remarks>
 /// </summary>
 public class KeyValueElement:ConfigurationElement
 {
  /// <summary>
  /// 鍵
  /// </summary>
  [ConfigurationProperty("key",IsRequired=true)]
  public string Key {
   get { return this["key"].ToString(); }
   set { this["key"] = value; }
  }
  /// <summary>
  /// 值
  /// </summary>
  [ConfigurationProperty("value")]
  public string Value
  {
   get { return this["value"].ToString(); }
   set { this["value"] = value; }
  }
 }
}

二、創(chuàng)建元素集合類。內(nèi)容很簡單都進行了注釋 

using System;
using System.Configuration;

namespace Ninesky.Models.Config
{
 /// <summary>
 /// 元素集合類
 /// <remarks>
 /// 創(chuàng)建:2014.03.09
 /// </remarks>
 /// </summary>
 [ConfigurationCollection(typeof(KeyValueElement))]
 public class KeyValueElementCollection:ConfigurationElementCollection
 {
  //忽略大小寫
  public KeyValueElementCollection() : base(StringComparer.OrdinalIgnoreCase) { }
  /// <summary>
  /// 集合中指定鍵的元素
  /// </summary>
  /// <param name="name"></param>
  /// <returns></returns>
  new public KeyValueElement this[string name]
  {
   get { return (KeyValueElement)base.BaseGet(name); }
   set
   {
    if (base.Properties.Contains(name)) base[name] = value;
    else base.BaseAdd(value);
   }
  }
  /// <summary>
  /// 創(chuàng)建新元素.
  /// 必須重寫
  /// </summary>
  /// <returns></returns>
  protected override ConfigurationElement CreateNewElement()
  {
   return new KeyValueElement();
  }
  /// <summary>
  /// 獲取元素的鍵
  /// </summary>
  /// <param name="element"></param>
  /// <returns></returns>
  protected override object GetElementKey(ConfigurationElement element)
  {
   return ((KeyValueElement)element).Key;
  }
 }
}

三、配置節(jié)類 

類中定義私有屬性KeyValues。進行讀寫配置節(jié)集合,然后定義一系列的需要的配置屬性,操作就是對KeyValues的元素讀寫。 

using System.Configuration;

namespace Ninesky.Models.Config
{
 /// <summary>
 /// 上傳設(shè)置配置節(jié)
 /// <remarks>
 /// 創(chuàng)建:2014.03.09
 /// </remarks>
 /// </summary>
 public class UploadConfig:ConfigurationSection
 {
  private static ConfigurationProperty _property = new ConfigurationProperty(string.Empty, typeof(KeyValueElementCollection), null, ConfigurationPropertyOptions.IsDefaultCollection);
  /// <summary>
  /// 配置列表
  /// </summary>
  [ConfigurationProperty("", Options = ConfigurationPropertyOptions.IsDefaultCollection)]
  private KeyValueElementCollection KeyValues
  {
   get { return (KeyValueElementCollection)base[_property]; }
   set { base[_property] = value; }
  }
  /// <summary>
  /// 最大大小
  /// </summary>
  public int MaxSize
  {
   get
   {
    int _value =0;
    if (KeyValues["MaxSize"] != null) int.TryParse(KeyValues["MaxSize"].Value, out _value);
    return _value;
   }
   set
   {
    if (KeyValues["MaxSize"] == null) KeyValues["MaxSize"] = new KeyValueElement() { Key = "MaxSize", Value = value.ToString() };
    else KeyValues["MaxSize"].Value = value.ToString();
   }
  }

  /// <summary>
  /// 上傳目錄
  /// 為應(yīng)用程序目錄起的文件夾名,前面不帶~/
  /// </summary>
  public string Path
  {
   get
   {
    if (KeyValues["Path"] == null) return "Upload";
    return KeyValues["Path"].Value;
   }
   set
   {
    if (KeyValues["Path"] == null) KeyValues["Path"] = new KeyValueElement() { Key = "Path", Value = value };
    else KeyValues["Path"].Value = value;
   }
  }

  /// <summary>
  /// 允許上傳的圖片類型文件擴展,多個用“,”隔開
  /// </summary>
  public string ImageExt
  {
   get
   {
    if (KeyValues["ImageExt"] == null) return string.Empty;
    return KeyValues["ImageExt"].Value;
   }
   set
   {
    if (KeyValues["ImageExt"] == null) KeyValues["ImageExt"] = new KeyValueElement() { Key = "ImageExt", Value = value };
    else KeyValues["ImageExt"].Value = value;
   }
  }

  /// <summary>
  /// 允許上傳的Flash類型文件擴展,多個用“,”隔開
  /// </summary>
  public string FlashExt
  {
   get
   {
    if (KeyValues["FlashExt"] == null) return string.Empty;
    return KeyValues["FlashExt"].Value;
   }
   set
   {
    if (KeyValues["FlashExt"] == null) KeyValues["FlashExt"] = new KeyValueElement() { Key = "FlashExt", Value = value };
    else KeyValues["FlashExt"].Value = value;
   }
  }

  /// <summary>
  /// 允許上傳的媒體類型文件擴展,多個用“,”隔開
  /// </summary>
  public string MediaExt
  {
   get
   {
    if (KeyValues["MediaExt"] == null) return string.Empty;
    return KeyValues["MediaExt"].Value;
   }
   set
   {
    if (KeyValues["MediaExt"] == null) KeyValues["MediaExt"] = new KeyValueElement() { Key = "MediaExt", Value = value };
    else KeyValues["MediaExt"].Value = value;
   }
  }

  /// <summary>
  /// 允許上傳的文件類型文件擴展,多個用“,”隔開
  /// </summary>
  public string FileExt
  {
   get
   {
    if (KeyValues["FileExt"] == null) return string.Empty;
    return KeyValues["FileExt"].Value;
   }
   set
   {
    if (KeyValues["FileExt"] == null) KeyValues["FileExt"] = new KeyValueElement() { Key = "FileExt", Value = value };
    else KeyValues["FileExt"].Value = value;
   }
  }
 }
}

四、讀取配置 
也是最關(guān)系的,配置信息怎么讀出來。在上面類寫好后讀取非常容易了,只需用WebConfigurationManager.OpenWebConfiguration("~"). GetSection()獲取配置節(jié)的實例,局可以使用屬性值了 

var _uploadConfig = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~").GetSection("UploadConfig") as Ninesky.Models.Config.UploadConfig;
   //文件最大限制
   int _maxSize = _uploadConfig.MaxSize;
   //文件路徑
   string _fileParth = _uploadConfig.Path ;
   string _dirName;
   //允許上傳的類型
   Hashtable extTable = new Hashtable();
   extTable.Add("image", _uploadConfig.ImageExt);
   extTable.Add("flash", _uploadConfig.FileExt);
   extTable.Add("media", _uploadConfig.MediaExt);
   extTable.Add("file", _uploadConfig.FileExt);

五、寫入配置
 跟讀取類似,把屬性值設(shè)置后save()一下,內(nèi)容就會保存到Config\Upload.config中。 

代碼如下: 

var _uploadConfig = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~").GetSection("UploadConfig") as Ninesky.Models.Config.UploadConfig;
   //文件最大限制
   int _maxSize = _uploadConfig.MaxSize;
   _uploadConfig.FileExt = "doc,docx,xls,xlsx,ppt,htm,html,txt,zip,rar,gz,bz2";
   _uploadConfig.FlashExt = "swf,flv";
   _uploadConfig.ImageExt = "gif,jpg,jpeg,png,bmp";
   _uploadConfig.MediaExt = "swf,flv,mp3,wav,wma,wmv,mid,avi,mpg,asf,rm,rmvb";
   _uploadConfig.Path = "Upload";
   _uploadConfig.CurrentConfiguration.Save();

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • asp.net下使用Request.From獲取非服務(wù)器控件的值的方法

    asp.net下使用Request.From獲取非服務(wù)器控件的值的方法

    asp.net下使用Request.From獲取非服務(wù)器控件的值的方法,需要的朋友可以參考下。
    2010-03-03
  • WPF中在攝像頭視頻上疊加控件的解決方案

    WPF中在攝像頭視頻上疊加控件的解決方案

    前段時間,在一個wpf的項目中需要實時顯示ip攝像頭,對此的解決方案想必大家都應(yīng)該知道很多。今天小編給大家?guī)砹薟PF中在攝像頭視頻上疊加控件的解決方案,一起看看吧
    2017-04-04
  • ASP.NET獲取MS SQL Server安裝實例實現(xiàn)思路及代碼

    ASP.NET獲取MS SQL Server安裝實例實現(xiàn)思路及代碼

    在演示中,是把找到的實例顯示于DropDownList控件中。首先在.aspx拉一個DropDownList控件,感興趣的朋友可以了解下哦,或許對你有所幫助
    2013-01-01
  • ASP.NET Core實現(xiàn)自定義WebApi模型驗證詳解

    ASP.NET Core實現(xiàn)自定義WebApi模型驗證詳解

    這篇文章主要給大家介紹了關(guān)于ASP.NET Core實現(xiàn)自定義WebApi模型驗證的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家學(xué)習(xí)或者使用ASP.NET Core具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-08-08
  • 管理員登錄設(shè)計(第7節(jié))

    管理員登錄設(shè)計(第7節(jié))

    這篇文章主要內(nèi)容是管理員登錄設(shè)計,通過設(shè)計了解命名空間的概念,掌握命名控件的的構(gòu)建和使用以及數(shù)據(jù)的讀操作,需要的朋友可以參考下
    2015-08-08
  • asp.net MVC下使用rest的方法

    asp.net MVC下使用rest的方法

    本篇文章主要介紹了asp.net MVC下使用rest的方法,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-09-09
  • ASP.NET Core全面掃盲貼

    ASP.NET Core全面掃盲貼

    本篇文章主要介紹了.NET Core,.NET Core是一個開源通用的開發(fā)框架,支持跨平臺,即支持在Window,macOS,Linux等系統(tǒng)上的開發(fā)和部署有興趣的可以了解一下。
    2017-03-03
  • Linux服務(wù)器下利用Docker部署.net Core項目的全過程

    Linux服務(wù)器下利用Docker部署.net Core項目的全過程

    這篇文章主要給大家介紹了關(guān)于在Linux服務(wù)器下利用Docker部署.net Core項目的相關(guān)資料,文中通過示例代碼介紹的非常詳細,對大家學(xué)習(xí)或者使用.net Core具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-07-07
  • Asp.NetCore1.1版本去掉project.json后如何打包生成跨平臺包

    Asp.NetCore1.1版本去掉project.json后如何打包生成跨平臺包

    這篇文章主要為大家詳細介紹了Asp.NetCore1.1版本去掉project.json后如何打包生成跨平臺包 ,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-06-06
  • 微信公眾平臺開發(fā)之發(fā)送圖文消息.Net代碼解析

    微信公眾平臺開發(fā)之發(fā)送圖文消息.Net代碼解析

    這篇文章主要為大家詳細解析了微信公眾平臺開發(fā)之發(fā)送圖文消息.Net代碼,感興趣的小伙伴們可以參考一下
    2016-06-06

最新評論