Embedded Resource
.NET中使用外部資源時經常使用的方式都是使用資源文件,做爲程序集的一部分發布。資源文件的讀取也比較方便,字符串、圖片和任何二進制數據,包括任何類型的文件均可以做爲資源的項。html
使用資源文件時VS也會自動生成相應的方法來獲取資源,用xml編輯器打開後綴.resx的文件,能夠看到資源文件是用xml方式存儲的。編輯器
Embedded Resource亦即嵌入式資源文件,和資源同樣,經過一些設置後也能夠做爲程序集的一部分發布。有時候咱們不想用資源文件的時候也能夠使用嵌入式資源,例如將文件my.xml做爲資源文件嵌入的設置方法:函數
經過reflector打開程序集能夠看到,my.xml文件已經做爲程序集的一部分:post
其嵌入的資源文件命名規則爲:程序集+文件夾名(若是存在)+文件名(含後綴名)。this
文件屬性中「Copy to OutPut Directory」選定嵌入資源文件的的輸出方式。url
關於資源文件/嵌入式資源文件的讀取
讀取資源文件/嵌入式資源文件的通常方式爲先加載資源所在的程序集,利用反射獲取程序集中的外部文件數據:spa
- 讀取資源文件名使用:string[] Assembly.GetManifestResourceNames(). 返回的是全部程序集資源清單文件
- 資源文件的讀取使用System.Resources.ResourceManager類,構造函數簽名:public ResourceManager(string baseName, Assembly assembly).
- 嵌入式資源文件的讀取使用Assembly.GetManifestResourceStream(string name)
下面是一段參考代碼:
code
static void Main(string[] args) { Assembly assembly = Assembly.Load("ResourceSample"); string content = string.Empty; //GetManifestResourceNames:this method used to find all resource name. foreach (string resourcein assembly.GetManifestResourceNames()) { Console.WriteLine("Manifest:{0}", resource); if (resource.IndexOf(".Resource1") > 0) { ResourceManager manager = new ResourceManager("ResourceSample.Resource1", assembly); //read specified string Console.WriteLine("resource key:mytest,value:{0}",manager.GetString("mytest")); } else { //read Embedded resource using (Stream stream = assembly.GetManifestResourceStream(resource)) { using (StreamReader reader = new StreamReader(stream)) { Console.WriteLine(reader.ReadToEnd()); } } } } Console.ReadKey(); }
演示代碼 下載
本文版權歸做者和博客園共有,歡迎轉載,但未經做者贊成必須保留此段聲明,且在文章頁面明顯位置給出原文鏈接,不然保留追究法律責任的權利。orm
原文地址:http://www.cnblogs.com/ecin/archive/2012/02/26/2369139.htmlxml