4

控制器:

private readonly Dictionary<string, Stream> streams;

        public ActionResult Upload(string qqfile, string id)
        {
            string filename;
            try
            {
                Stream stream = this.Request.InputStream;
                if (this.Request.Files.Count > 0)
                {
                    // IE
                    HttpPostedFileBase postedFile = this.Request.Files[0];
                    stream = postedFile.InputStream;
                }
                else
                {
                    stream = this.Request.InputStream;
                }

                filename = this.packageRepository.AddStream(stream, qqfile);
            }
            catch (Exception ex)
            {
                return this.Json(new { success = false, message = ex.Message }, "text/html");
            }

            return this.Json(new { success = true, qqfile, filename }, "text/html");
        }

添加流的方法:

        public string AddStream(Stream stream, string filename)
        {

            if (string.IsNullOrEmpty(filename))
            {
                return null;
            }

            string fileExt = Path.GetExtension(filename).ToLower();
            string fileName = Guid.NewGuid().ToString();
            this.streams.Add(fileName, stream);
        }

我正在尝试像这样读取二进制流:

Stream stream;
            if (!this.streams.TryGetValue(key, out stream))
            {
                return false;
            }

    private const int BufferSize = 2097152;

                            using (var binaryReader = new BinaryReader(stream))
                            {
                                int offset = 0;
                                binaryReader.BaseStream.Position = 0;
                                byte[] fileBuffer = binaryReader.ReadBytes(BufferSize); // THIS IS THE LINE THAT FAILS
    ....

当我在调试模式下查看流时,它显示它可以读取 = true、seek = true、lenght = 903234 等。

但我不断收到: 无法访问已关闭的文件

当我在本地/调试模式(VS IIS)运行 mvc 站点时,这工作正常,而在“RELEASE”模式下(当站点发布到 iis 时)不起作用。

我究竟做错了什么?

4

2 回答 2

8

在这里找到解决方案:

上传文件异常

解决方案:

在生产环境中添加“requestLengthDiskThreshold”

<system.web>
<httpRuntime executionTimeout="90" maxRequestLength="20000" useFullyQualifiedRedirectUrl="false" requestLengthDiskThreshold="8192"/>
</system.web>
于 2013-02-15T08:52:56.147 回答
0

您似乎依赖于您无法控制的对象的生命周期(HttpRequest 对象的属性)。如果您希望存储流的数据,则立即将该数据复制到字节数组或类似文件中会更安全

您可以将 AddStream 更改为

    public string AddStream(Stream stream, string filename)
    {

        if (string.IsNullOrEmpty(filename))
        {
            return null;
        }

        string fileExt = Path.GetExtension(filename).ToLower();
        string fileName = Guid.NewGuid().ToString();
        var strLen = Convert.ToInt32(stream.Length);
        var strArr = new byte[strLen];
        stream.Read(strArr, 0, strLen);
        //you will need to change the type of streams acccordingly
        this.streams.Add(filename,strArr); 
    }

然后,您可以在需要流的数据时使用该数组,这使您可以完全控制存储数据的对象的生命周期

于 2013-02-12T12:47:26.540 回答