一、使用第二种方法的好处:
1.不需要在你的运用程序中部署嵌入的资源文件,因为它将做为程序集的一部分;
2.不需要设置系统文件和文件夹“读”的权利;
3.不会暴露嵌入资源文件的内容,特别是当把一个配置信息以XML文件保存的时候。
二、如何把一个文件设为嵌入资源?
1.右键单击要设为嵌入资源的文件,点击“Properties”按钮;
2.在属性窗口中设置“Build Action”属性值为:Emebbed Resource。
三、关于嵌入资源文件的文件名
嵌入资源文件的文件名由三个部分组成 :默认名称空间[.文件夹名].文件名。
假设在一个项目中把a.xml设为嵌入资源,且项目的默认名称空间(右键当击解决方案,点击属性,可以查看默认名称空间)为DefaultNameSpace:
1.若a.xml不在项目的子文件夹下,那么其文件名为DefaultNameSpace.a.xml;
2.若 a.xml在子文件夹FolderName下,那么其文件名为DefaultNameSpace.FolderName.a.xml。
四、如何访问嵌入资源文件?
C#代码:
//
WordProcessingML是项目的名称空间
string str = " WordProcessingML.emptyDoc.xml " ;
// 可以使用System.Reflection.Assembly.GetExecutingAssembly().GetName().Name获得默认名称空间
// string str = System.Reflection.Assembly.GetExecutingAssembly().GetName().Name + ".emptyDoc.xml";
System.IO.Stream stream = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(str);
string strXml = string .Empty;
using (System.IO.StreamReader sr = new System.IO.StreamReader(stream))
{
strXml = sr.ReadToEnd();
}
m_xmlDocument.LoadXml(strXml);
string str = " WordProcessingML.emptyDoc.xml " ;
// 可以使用System.Reflection.Assembly.GetExecutingAssembly().GetName().Name获得默认名称空间
// string str = System.Reflection.Assembly.GetExecutingAssembly().GetName().Name + ".emptyDoc.xml";
System.IO.Stream stream = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(str);
string strXml = string .Empty;
using (System.IO.StreamReader sr = new System.IO.StreamReader(stream))
{
strXml = sr.ReadToEnd();
}
m_xmlDocument.LoadXml(strXml);