如何从.NET程序集中检索二进制文件?

时间:2010-04-03 04:27:40

标签: c# resources embedded-resource

我有一个excel文件,我想嵌入我的C#程序集中。我已将XLSX文件的构建操作更改为“Embedded Resource”。

在运行时,我必须从程序集中检索此XLSX文件。

Assembly assembly = Assembly.GetExecutingAssembly();
StreamReader sr = new StreamReader(assembly.GetManifestResourceStream("AssemblyName.Output.xlsx"), true);
StreamWriter sw = new StreamWriter(strPath);
sw.Write(sr.ReadToEnd());
sr.Dispose();
sw.Dispose();
System.Diagnostics.Process.Start(strPath);

正如预期的那样,XLSX文件失败,因为它是二进制数据。这适用于文本文件。

我尝试过二进制读/写,但我无法运行代码。想法?

1 个答案:

答案 0 :(得分:10)

var assembly = Assembly.GetExecutingAssembly();

// don't forget to do appropriate exception handling arund opening and writing file
using(Stream input = assembly.GetManifestResourceStream("AssemblyName.Output.xlsx"))
using(Stream output = File.Open("output.xlsx"))
{
     input.CopyTo(output);
}