Java Web报错:getOutputStream() has already been called for this response解决方案

Posted hyhy904

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java Web报错:getOutputStream() has already been called for this response解决方案相关的知识,希望对你有一定的参考价值。

今天做了个导出excel表的功能。大概代码如下:

ouputStream = response.getOutputStream();
wb.write(ouputStream);
ouputStream.flush();
ouputStream.close();
1
2
3
4
发现报错

java.lang.IllegalStateException: getOutputStream() has already been called for this response
1
报错原因
getOutputStream方法用于返回Servlet引擎创建的字节输出流对象,Servlet程序可以按字节形式输出响应正文。
getWriter方法用于返回Servlet引擎创建的字符输出流对象,Servlet程序可以按字符形式输出响应正文。
getOutputStream和getWriter这两个方法互相排斥,调用了其中的任何一个方法后,就不能再调用另一方法。

解决方案有两种:
在jsp页面里清除response。
out.clear();
out = pageContext.pushBody(http://www.my516.com);
1
2
在controller层对应的方法上追加@ResponseBody。
---------------------

以上是关于Java Web报错:getOutputStream() has already been called for this response解决方案的主要内容,如果未能解决你的问题,请参考以下文章

Java Web 中使用 jQuery miniui报错

eclipse报错Dynamic Web Module 3.0 requires Java 1.6

JAVA WEB开发 报错java.lang.Object.wait(Native Method)

Java Web报错: GET http://localhost:8080/ 404 (Not Found)

解决导入MAVEN项目报错Dynamic Web Module 3.1 requires Java 1.7 or newer.

idea控制台运行tomcat,报错:java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderLi