在家上网赚钱更容易
最近用了jsp做了一个简单的图形验证码,产生四个随机字符。使用时候发现后台异常不断。
异常日志如下:
2009-9-10 13:39:23 org.apache.catalina.core.StandardWrapperValve invoke
严重: Servlet.service() for servlet jsp threw exception
java.lang.IllegalStateException: getOutputStream() has already been called for this response
at org.apache.catalina.connector.Response.getWriter(Response.java:596)
at org.apache.catalina.connector.ResponseFacade.getWriter(ResponseFacade.java:186)
at org.apache.jasper.runtime.JspWriterImpl.initOut(JspWriterImpl.java:124)
at org.apache.jasper.runtime.JspWriterImpl.flushBuffer(JspWriterImpl.java:117)
at org.apache.jasper.runtime.PageContextImpl.release(PageContextImpl.java:191)
at org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext(JspFactoryImpl.java:115)
at org.apache.jasper.runtime.JspFactoryImpl.releasePageContext(JspFactoryImpl.java:75)
意思就是在输出前已经有out流了,查了整个代码,也没输出啊。灵异事件?
狗了一下,解决了这个问题,修改jsp源码中<%%>和<%%>之间的空格和换行。
原来代码:
<%@page contentType="image/jpeg"%>
<%
// code 11
%>
<%
// code 22
%>
修改后:
<%@page contentType="image/jpeg"%><%
// code 11
%><%
// code 22
%>
原因应该是page声明那一行会默认一个输出空行,而Content-type是image就会出错啦!
下面是验证码的源码,有需要的就扒一下把:
<%@page contentType="image/jpeg" import="java.awt.*,java.awt.image.*,java.util.*,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);
}
%><%
response.setHeader("Pragma", "No-cache");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 0);
int width = 60, 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("Verdana Arial Helvetica sans-serif", Font.PLAIN, 20));
g.setColor(getRandColor(160, 255));
for (int i = 0; i < 200; i++) {
int x = random.nextInt(width);
int y = random.nextInt(height);
int xl = random.nextInt(10);
int yl = random.nextInt(10);
g.drawLine(x, y, x + xl, y + yl);
}
char c[] = new char[62];
for (int i = 97, j = 0; i < 123; i++, j++) {
c[j] = (char) i;
}
for (int o = 65, p = 26; o < 91; o++, p++) {
c[p] = (char) o;
}
for (int m = 48, n = 52; m < 58; m++, n++) {
c[n] = (char) m;
}
String sRand = "";
for (int i = 0; i < 4; i++) {
int x = random.nextInt(62);
String rand = String.valueOf(c[x]);
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);
}
g.dispose();
ImageIO.setUseCache(true);
ImageIO.write(image, "JPEG", response.getOutputStream());
session.setAttribute("rand", sRand);
%>
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/smallfish_xy/archive/2009/09/10/4538884.aspx
在家上网赚钱更容易
分享到:
相关推荐
- 代码中提到了关于`response.getOutputStream()`和`out`的使用问题,需要注意在输出图像时,应当使用`response.getOutputStream()`而非`out`,以避免`java.lang.IllegalStateException`异常。 #### 三、展示与...
纠结了半天的 java.lang.IllegalStateException: getOutputStream() has already。这个问题困扰了半天,在网上查阅了大量资料 出这个错误一般就是下面2个.....
* 不能在 <jsp:forward page/> 之前使用 out.flush(),否则将抛出 java.lang.IllegalStateException 异常。 * 跳转后,浏览器地址栏不变。 * <jsp:forward page/> 之后的语句将在跳转完成后执行。 * 只能跳转到当前...
IllegalStateException: The specified child already has a parent.我的博客中有文章讲解
在Android开发过程中,Java异常`java.lang.IllegalStateException`是一个常见的错误类型,它通常表示程序在不合法或者不合适的状态下尝试执行某项操作。在上述描述中提到了两种特定的`IllegalStateException`情况: ...
5. **在异常发生时记录详细日志**:捕获到`IllegalStateException`后,记录足够的错误信息,以便于定位问题的根源。 对于给定的标签"源码"和"工具",这可能意味着你正在查看或调试相关的源代码,或者寻找某种工具来...
如果在使用`<jsp:forward>`之前已经进行了输出操作,则会抛出以下异常: ```java java.lang.IllegalStateException: forward() not allowed after buffer has committed. ``` 解决办法同样是确保在使用`<jsp:forward...
IllegalStateException如何解决.md
IllegalStateException解决办法.md
4. **捕获并处理异常**:在可能出现异常的地方添加适当的try-catch块,捕获并处理IllegalStateException。 描述中的链接指向了一些技术论坛的讨论,这些讨论可能包含了遇到问题的具体上下文和解决方案。文件名中的...
在本篇内容中,我们将探讨JSP(JavaServer Pages)的一些基本概念和相关习题,这对于理解和掌握JSP技术非常重要。 1. GET和POST请求方式: - GET请求的参数通常显示在URL上,而POST请求的参数则不会出现在网址列上...
- 这里可能会出现`java.lang.IllegalStateException: Attempt to clear a buffer that's already been flushed`异常,原因是缓冲区已满,而`<jsp:forward>`试图清空缓冲区。 3. **尝试在缓冲区非常大时使用`<jsp:...
java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a background thread, but...
异常:Caused by: java.lang.IllegalStateException: Method has too many Body parameters Caused by: java.lang.IllegalStateException: Method has too many Body parameters: public abstract ...
IllegalStateException(解决方案).md
3. IllegalStateException:表示在给定状态下执行的方法是非法或不适当的,例如,当试图在服务未启动时停止服务。 4. NullPointerException:当试图访问或操作一个null对象时抛出,这是非常常见的运行时异常。 5. ...