流zip文件MVC.NET开始流式传输

时间:2009-05-08 05:46:41

标签: c# asp.net-mvc

我正在尝试创建一种方法,在用户下载时不断传输zip文件(这样就不会浪费流媒体)

我添加了一个thread.sleep来模拟延迟

public override void ExecuteResult(ControllerContext context) {
    HttpResponseBase response = context.HttpContext.Response;

    response.Clear();
    response.ClearContent();
    response.ClearHeaders();
    response.Cookies.Clear();
    response.ContentType = ContentType;
    response.ContentEncoding = Encoding.Default;
    response.AddHeader("Content-Type", ContentType);
    context.HttpContext.Response.AddHeader("Content-Disposition", 
                            String.Format("attachment; filename={0}", 
                            this.DownloadName));
    int ind = 0;
    using (ZipOutputStream zipOStream = 
                new ZipOutputStream(context.HttpContext.Response.OutputStream))
    {
        foreach (var file in FilesToZip)
        {
            ZipEntry entry = new ZipEntry(FilesToZipNames[ind++]);
            zipOStream.PutNextEntry(entry);
            Thread.Sleep(1000);
            zipOStream.Write(file, 0, file.Length);
            zipOStream.Flush();
        }
        zipOStream.Finish();
    }    
    response.OutputStream.Flush();
}

在所有文件都是压缩文件之前,似乎zip不会开始流式传输。有没有办法连续流?也许有不同的图书馆?

2 个答案:

答案 0 :(得分:10)

假设zip格式偏向流式传输,那么问题在于您的响应默认是缓冲的。如果将HttpResponseBase.BufferOutput设置为false,则应立即开始流式传输。

答案 1 :(得分:0)

我认为您可能需要刷新输出流而不是zipostream来查看http的任何输出。所以在这种情况下,response.OutputStream.Flush()会出现在你的循环中。不确定它是否真的可以解决你的问题。