精通
英语
和
开源
,
擅长
开发
与
培训
,
胸怀四海
第一信赖
VS.NET中有两种使用嵌入资源,一种是使用.resx文件,一种是把文件的Build Type属性设为Emebbed Resource。
使用Emebbed Resource的好处:
1.不需要在你的运用程序中部署嵌入的资源文件,因为它将做为程序集的一部分;.NET中使用外部资源时常用的方式都是使用资源文件,作为程序集的一部分发布。资源文件的读取也比较方便,字符串、图片和任何二进制数据,包括任何类型的文件都可以作为资源的项。
使用资源文件时VS也会自动生成相应的方法来获取资源,用xml编辑器打开后缀.resx的文件,可以看到资源文件是用xml方式存储的。
Embedded Resource亦即嵌入式资源文件,和资源一样,通过一些设置后也可以作为程序集的一部分发布。有时候我们不想用资源文件的时候也可以使用嵌入式资源,例如将文件my.xml作为资源文件嵌入的设置方法:
通过reflector打开程序集可以看到,my.xml文件已经作为程序集的一部分:
其嵌入的资源文件命名规则为:程序集+文件夹名(如果存在)+文件名(含后缀名)。
文件属性中“Copy to OutPut Directory”选定嵌入资源文件的的输出方式。
读取资源文件/嵌入式资源文件的一般方式为先加载资源所在的程序集,利用反射获取程序集中的外部文件数据:
•读取资源文件名使用:string[] Assembly.GetManifestResourceNames(). 返回的是所有程序集资源清单文件
•资源文件的读取使用System.Resources.ResourceManager类,构造函数签名:public ResourceManager(string baseName, Assembly assembly).
•嵌入式资源文件的读取使用Assembly.GetManifestResourceStream(string name)
下面是一段参考代码:
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();
}