在家上网赚钱更容易
最近用了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`情况: ...
如果在使用`<jsp:forward>`之前已经进行了输出操作,则会抛出以下异常: ```java java.lang.IllegalStateException: forward() not allowed after buffer has committed. ``` 解决办法同样是确保在使用`<jsp:forward...
4. **捕获并处理异常**:在可能出现异常的地方添加适当的try-catch块,捕获并处理IllegalStateException。 描述中的链接指向了一些技术论坛的讨论,这些讨论可能包含了遇到问题的具体上下文和解决方案。文件名中的...
- 这里可能会出现`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 ...
3. IllegalStateException:表示在给定状态下执行的方法是非法或不适当的,例如,当试图在服务未启动时停止服务。 4. NullPointerException:当试图访问或操作一个null对象时抛出,这是非常常见的运行时异常。 5. ...
也就是说,要么使用getWriter(),要么使用getOutputStream(),否则将抛出IllegalStateException异常。 字符响应流 使用getWriter()方法获取字符流时,需要注意字符编码问题。默认情况下,字符编码为ISO-8859-1,但...
- `IllegalStateException`:在不适当的状态下执行操作,如在文件未关闭时重命名。 - `NullPointerException`:在比较对象时,确保对象已初始化。 - `NullPointerException`:在使用日期和时间API时,确保对象非...
7. IllegalStateException:当对象处于不适合执行请求的操作的状态时,会抛出此异常。 8. NumberFormatException:在尝试将字符串转换为数字格式失败时抛出,如"abc"转换为整数。 理解这些常见异常及其使用场景,能...
例如,Java API中的`IllegalArgumentException`、`IllegalStateException`等都是未检查异常,它们通常用于表示编程逻辑错误,而不是预期的运行时问题。 在API设计中,合理封装异常至关重要。不要将底层实现的特定...
### Android异常处理详解 #### 一、异常机制概述 异常机制是编程语言中用于处理运行时错误的关键技术之一。在Android开发中,由于其基于Java语言,因此异常处理机制也遵循Java的标准。本文旨在深入探讨Android开发...