我有一个*.ashx
带有此代码的(处理程序):
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "application/zip";
context.Response.AddHeader("Content-Disposition", "attachment; filename=catalog" + DateTime.Now.ToString("yyyy-MM-dd") + ".zip");
// magic happends here to get a DataTable called 'dt'
using (ZipFile zip = new ZipFile(Encoding.UTF8))
{
foreach (DataRow dr in dt.Rows)
{
string barCode = "C:/tmp/bc/" + dr["ProductCode"] + ".gif";
if (File.Exists(barCode))
{
if (!zip.EntryFileNames.Contains("bc" + dr["ProductCode"] + ".gif"))
{
try
{
// this option does not work
using (StreamReader sr = new StreamReader(barCode))
{
if (sr.BaseStream.CanRead)
zip.AddEntry("bc" + dr["ProductCode"] + ".gif", sr.BaseStream);
}
// but the next line does work... WHY?
zip.AddEntry("bc" + dr["ProductCode"] + ".gif", File.ReadAllBytes(barCode));
}
catch (Exception ex)
{
// never hits the catch
context.Response.Write(ex.Message);
}
}
}
}
zip.Save(context.Response.OutputStream); // here is the exception if I use the first option
}
}
我使用最新版本的http://dotnetzip.codeplex.com/File.ReadAllBytes
有人可以向我解释一下,
为什么StreamReader
保存到OutputStream
. 异常消息是无法访问已关闭的文件