下载指定流中的文件?

时间:2012-06-11 07:32:04

标签: asp.net asp.net-mvc reporting-services stream httpwebrequest

我在Asp.Net MVC网络应用程序中。

对于特定操作,我将返回从另一个内部服务器生成的文件。此服务器需要一些Web用户不拥有的凭据。因此,Asp.net MVC服务器必须将自己连接到此服务器,下载并将下载的文件发送到客户端。

其实我是通过ActionResult来做的:

public class ReportServerFileResult : FileResult
    {
        private readonly string _host;
        private readonly string _domain;
        private readonly string _userName;
        private readonly string _password;
        private readonly string _reportPath;
        private readonly Dictionary<string, string> _parameters;

        /// <summary>
        /// Initializes a new instance of the <see cref="ReportServerFileResult"/> class.
        /// </summary>
        /// <param name="contentType">Type of the content.</param>
        /// <param name="host">The host.</param>
        /// <param name="domain">The domain.</param>
        /// <param name="userName">Name of the user.</param>
        /// <param name="password">The password.</param>
        /// <param name="reportPath">The report path.</param>
        /// <param name="parameters">The parameters.</param>
        public ReportServerFileResult(string contentType, String host, String domain, String userName, String password, String reportPath, Dictionary<String, String> parameters)
            : base(contentType)
        {
            _host = host;
            _domain = domain;
            _userName = userName;
            _password = password;
            _reportPath = reportPath;
            _parameters = parameters;
        }

        #region Overrides of FileResult

        /// <summary>
        /// Writes the file to the response.
        /// </summary>
        /// <param name="response">The response.</param>
        protected override void WriteFile(HttpResponseBase response)
        {
            string reportUrl = String.Format("http://{0}{1}&rs:Command=Render&rs:Format=PDF&rc:Toolbar=False{2}",
                                             _host,
                                             _reportPath,
                                             String.Join("", _parameters.Select(p => "&" + p.Key + "=" + p.Value)));


            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(reportUrl);
            request.PreAuthenticate = true;
            request.Credentials = new NetworkCredential(_userName, _password, _domain);
            HttpWebResponse webResponse = (HttpWebResponse)request.GetResponse();
            Stream fStream = webResponse.GetResponseStream();
            webResponse.Close();

            fStream.CopyTo(response.OutputStream);
            fStream.Close();
        }

        #endregion
    }

但我不喜欢如何管理流,因为(如果我能够正确理解),我们会检索文件的完整流,然后开始将其发送给最终用户。

但这意味着我们要在内存中加载完整的文件,不是吗?

所以我想知道是否有可能向HttpWebRequest提供必须写入响应的流?要直接将Web响应流式传输到输出?

有可能吗?你还有其他想法吗?

1 个答案:

答案 0 :(得分:1)

您已经连接了两个流。仅仅因为你调用GetResponse()不会将整个数据读入内存。

当目标流可以接受写入时,CopyTo()应根据需要从源流中读取数据,具体取决于目标流的传输速度。

您是否有任何指标表明整个内容都会被读入网络流程的内存?