码迷,mamicode.com
首页 > 编程语言 > 详细

java.lang.IllegalStateException: getWriter() has already been called for this response

时间:2014-11-24 22:48:16      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:java.lang.illegalstateexception: getwriter() has already been called for this response

java.lang.IllegalStateException: getWriter() has already been called for this response

出现原因:

1.代码中有打开的Response.getWriter(),未关闭

2.再次使用了ServletOutputStream out = response.getOutputStream();


通过查看代码,response中的usingWriter=true,想办法将该标志位设置为false。

response.reset(); 即可

扩展:OutputStream和Writer在一个response中不能同时获得。

本文出自 “javaruler” 博客,请务必保留此出处http://tengjs.blog.51cto.com/5641106/1582109

java.lang.IllegalStateException: getWriter() has already been called for this response

标签:java.lang.illegalstateexception: getwriter() has already been called for this response

原文地址:http://tengjs.blog.51cto.com/5641106/1582109

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