jsp出现getOutputStream() has already been called for this response异常的原因和解决方法

本文涉及的产品
函数计算FC,每月15万CU 3个月
简介: jsp出现getOutputStream() has already been called for this response异常的原因和解决方法 在tomcat5下jsp中出现此错误一般都是在jsp中使用了输出流(如输出图片验证码,文件下载等),没有妥善处理好的原因。具体的原因就是在tomcat中jsp编译成servlet之后在函数_jspService(HttpServletReque
jsp出现getOutputStream() has already been called for this response异常的原因和解决方法

在tomcat5下jsp中出现此错误一般都是在jsp中使用了输出流(如输出图片验证码,文件下载等),
没有妥善处理好的原因。
具体的原因就是
在tomcat中jsp编译成servlet之后在函数_jspService(HttpServletRequest request, HttpServletResponse response)的最后
有一段这样的代码
finally {
      if (_jspxFactory != null) _jspxFactory.releasePageContext(_jspx_page_context);
    }
这里是在释放在jsp中使用的对象,会调用response.getWriter(),因为这个方法是和
response.getOutputStream()相冲突的!所以会出现以上这个异常。

然后当然是要提出解决的办法,其实挺简单的(并不是和某些朋友说的那样--
将jsp内的所有空格和回车符号所有都删除掉),

在使用完输出流以后调用以下两行代码即可:
out.clear();
out = pageContext.pushBody();

最后这里是一个输出彩色验证码例子(这样的例子几乎随处可见)
imag.jsp

 

<% @ page contentType = " text/html;charset=gb2312 "   %>
<% @ page  import = " java.awt.* "   %>
<% @ page  import = " java.awt.image.* "   %>
<% @ page  import = " java.util.* "   %>
<% @ page  import = " javax.imageio.* "   %>
<%!
Color getRandColor(
int  fc, int  bc) {//给定范围获得随机颜色
Random random = new Random();
if(fc>255) fc=255;
if(bc>255) bc=255;
int r=fc+random.nextInt(bc-fc);
int g=fc+random.nextInt(bc-fc);
int b=fc+random.nextInt(bc-fc);
return new Color(r,g,b);

}

%>
<%
//  在内存中创建图象
int  width = 80 , height = 20 ;
BufferedImage image 
=   new  BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);

//  获取图形上下文
Graphics g  =  image.getGraphics();

// 生成随机类
Random random  =   new  Random();

//  设定背景色
g.setColor(getRandColor( 200 , 250 ));
g.fillRect(
0 0 , width, height);

// 设定字体
g.setFont( new  Font( " Times New Roman " ,Font.PLAIN, 18 ));

// 画边框
// g.setColor(new Color());
// g.drawRect(0,0,width-1,height-1);

//  随机产生155条干扰线,使图象中的认证码不易被其它程序探测到
g.setColor(getRandColor( 160 , 200 ));
for  ( int  i = 0 ;i < 155 ;i ++ )
{
int x = random.nextInt(width);
int y = random.nextInt(height);
int xl = random.nextInt(12);
int yl = random.nextInt(12);
g.drawLine(x,y,x
+xl,y+yl);
}


//  取随机产生的认证码(5位数字)
String sRand = "" ;
for  ( int  i = 0 ;i < 5 ;i ++ ) {
String rand
=String.valueOf(random.nextInt(10));
sRand
+=rand;
// 将认证码显示到图象中
g.setColor(new Color(20+random.nextInt(110),20+random.nextInt(110),20+random.nextInt(110)));//调用函数出来的颜色相同,可能是因为种子太接近,所以只能直接生成
g.drawString(rand,13*i+6,16);
}


//  将认证码存入SESSION
session.setAttribute( " CertiCode " ,sRand);

//  图象生效
g.dispose();

// 设置页面不缓存
response.reset();
response.setHeader(
" Pragma " , " No-cache " );
response.setHeader(
" Cache-Control " , " no-cache " );
response.setDateHeader(
" Expires " 0 );
//  输出图象到页面
ServletOutputStream os = response.getOutputStream();
ImageIO.write(image, 
" JPEG " ,os);
os.flush();
os.close();
os
= null ;
response.flushBuffer();
out.clear();
out 
=  pageContext.pushBody();
%>
相关实践学习
【文生图】一键部署Stable Diffusion基于函数计算
本实验教你如何在函数计算FC上从零开始部署Stable Diffusion来进行AI绘画创作,开启AIGC盲盒。函数计算提供一定的免费额度供用户使用。本实验答疑钉钉群:29290019867
建立 Serverless 思维
本课程包括: Serverless 应用引擎的概念, 为开发者带来的实际价值, 以及让您了解常见的 Serverless 架构模式
相关文章
|
4月前
|
Java
JSP中使用response对象实现定时跳转网页
这篇文章讨论了JSP页面中使用response对象实现定时跳转网页的五种跳转方法,包括RequestDispatcher.forward()的使用及其在服务器端的工作原理。
|
4月前
|
缓存 Java 应用服务中间件
JSP的内置对象 request和response
这篇文章详细介绍了JSP的内置对象,包括request、response、out、session和application对象的使用方法和特性,以及如何通过这些对象处理HTTP请求和响应、管理会话和输出数据。
|
缓存 Java
严重: Servlet[jsp]的Servlet.service()抛出异常 java.lang.IllegalStateException: 当前响应已经调用了方法getOutputStream()
严重: Servlet[jsp]的Servlet.service()抛出异常 java.lang.IllegalStateException: 当前响应已经调用了方法getOutputStream()
619 0
|
存储 数据可视化 IDE
JSP常见异常之PropertyNotFoundException
JSP常见异常之PropertyNotFoundException
128 0
|
Java
2022年课时七——JSP第六次课 response对象的作用
2022年课时七——JSP第六次课 response对象的作用
81 0
2022年课时七——JSP第六次课 response对象的作用
jsp页面出现异常
这样的错误,就应该把把包含页面与被包含页面的@page指令里面的contentType写成一致,一定要一致
|
XML IDE Java
JavaWeb - JSP、Servlet、Request、Response、Get、Post 中文乱码问题
JavaWeb - JSP、Servlet、Request、Response、Get、Post 中文乱码问题
164 0
JavaWeb - JSP、Servlet、Request、Response、Get、Post 中文乱码问题
|
Java 应用服务中间件
JSP 加上 <%@ taglib prefix=“c“ uri=“http://java.sun.com/jsp/jstl/core“ %> 运行产生异常
笔者使用 Tomcat 10 版本,在使用 JSTL 的过程中,JSP 页面中一旦加上 <%@ taglib prefix=“c” uri=“http://java.sun.com/jsp/jstl/core” %> 标准库标签,运行就会产生异常,应该是 jar 包的问题,可能冲突或者版本不匹配什么的,尝试了无数种方法,各种导入 jar 包终无果。
JSP 加上 <%@ taglib prefix=“c“ uri=“http://java.sun.com/jsp/jstl/core“ %> 运行产生异常
|
Java Maven Spring
spring boot jsp之Intellij异常
spring boot jsp之Intellij异常
110 0