C#BinaryReader无法访问已关闭的文件

时间:2013-02-12 12:21:52

标签: c# asp.net stream binarystream

控制器:

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
    ....

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

但我一直在: 无法访问已关闭的文件

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

我做错了什么?

2 个答案:

答案 0 :(得分:8)

在此找到解决方案:

uploading file exception

解决方案:

在生产环境中添加“requestLengthDiskThreshold”

<system.web>
<httpRuntime executionTimeout="90" maxRequestLength="20000" useFullyQualifiedRedirectUrl="false" requestLengthDiskThreshold="8192"/>
</system.web>

答案 1 :(得分: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); 
    }

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