码迷,mamicode.com
首页 > 其他好文 > 详细

Bytes to be written to the stream exceed the Content-Length bytes size specified 解决方法

时间:2014-10-14 20:15:59      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   div   on   log   代码   line   

context.Response.ContentType = encode;               
using (StreamWriter writer = new StreamWriter(context.Response.OutputStream, UTF8))
    {
          writer.Write(str);
    }

上面代码常会报错:

 Bytes to be written to the stream exceed the Content-Length bytes size specified 

 

解决方法:

添加: context.Response.ContentLength64 = string.IsNullOrWhiteSpace(str) ? 0 : UTF8.GetByteCount(str); 

Bytes to be written to the stream exceed the Content-Length bytes size specified 解决方法

标签:style   blog   color   sp   div   on   log   代码   line   

原文地址:http://www.cnblogs.com/94cool/p/4024809.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!