java.lang.IllegalStateException: Cannot call sendError() after the response has been committed

来源:互联网 发布:浙江省儿童dna数据库 编辑:程序博客网 时间:2024/05/01 01:32

java.lang.IllegalStateException: Cannot call sendError() after the response has been committed

原创 2013年07月27日 17:24:04
原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本人声明。否则将追究法律责任。
作者:永恒の_☆    地址:http://blog.csdn.net/chenghui0317/article/details/9531171

做开发的时候,有时候报错:

java.lang.IllegalStateException: Cannot call sendError() after the response has been committed

字面上是参数异常, 在response已经提交之后 不能发送错误请求。

下面看个例子就一目了然了:

[java] view plain copy
  1. response.setContentType("text/html;charset=UTF-8");  
  2. PrintWriter out = response.getWriter();  
  3. out.print("上传成功!上传文件为:"+fileName+"<br/>保存的地址为"+filePath+ "!!");  
  4. out.close();  
  5.   
  6. response.sendRedirect("index.jsp");  

首先,利用reponse.getWrite()获得输出流对象,close()之后,这里reponse其实已经提交了。注释下面的sendRedirect代码,执行之后发现response已经进行已经跳转了,只不过url没有发生改变,并且页面上已经有输出上面指定的字符串。

所以当执行上面代码之后 ,reponse 会提交两次,服务器就不知道该怎么办了,所以抛出异常。


解决方案: 去掉out.close()  这里不会因为PrintWriter 输出对象没有关闭而占用资源的。


 
jiaojie5865
  • jiaojie5865

    2017-08-15 16:221楼
  • 感谢
  • 回复

阅读全文
0 0