.NET Winforms c#上传大文件

时间:2014-02-19 11:55:18

标签: c# .net winforms upload

当文件长度高于18 mb时,我收到此错误:

  

stream不支持并发IO读取或写入操作

错误已本地化:

requestStream.Write(header, 0, header.Length);
if (fileData != null)
{
     // write the file data, if any
     byte[] buffer = new Byte[checked((uint)Math.Min(8192, (int)fileData.Length))];
     int bytesRead;

     try
     {
          while ((bytesRead = fileData.Read(buffer, 0, buffer.Length)) != 0)
          {
               //throws an exception after 3000 loops aprox
               requestStream.Write(buffer, 0, bytesRead);
          }
     }
     catch (Exception ex)
     {
          string aux = ex.Message;
     }
}

// write footer
requestStream.Write(footer, 0, footer.Length);
return webrequest.GetResponse();

我尝试使用 lock 句子,sendChunked = trueAllowWriteStreamBuffering = false但我无法正确上传文件。

提前致谢

1 个答案:

答案 0 :(得分:1)

当循环尝试将数据上传(写入)到流时,Web服务器可能会发送大小限制已超过的错误消息(读取)。您可以尝试使用Wireshark或其他网络嗅探器检查服务器和程序之间发送的内容。