java
iteye_1794
这个作者很懒,什么都没留下…
展开
-
使用jstl标签报错:According to TLD or attribute directive in tag file, attribute value
原来jstl标签版本不一样,标签支持不一样。jstl1.0标签库不支持表达式,如: 在1.0下面,会报错:According to TLD or attribute directive in tag file, attribute value解决办法是使用备用库它支持表达式jstl 1.1之后,core就支持表达式了使用jstl不需要在...2009-12-15 15:09:24 · 156 阅读 · 0 评论 -
MyEclipse7.5注册程序
[code="java"]import java.io.*;public class MyEclipseGen { private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Digita...2010-03-18 22:46:31 · 110 阅读 · 0 评论 -
java.lang.IllegalStateException: getOutputStream() has already been called for
在jsp页面,向页面输出图片的时候,使用response.getOutputStream()会有这样的异常错误提示信息:java.lang.IllegalStateException: getOutputStream() has already been called for this response解决办法如下:1.将输出改用servlet代替2.在jsp页面的最后加上两句...2010-03-30 16:32:43 · 185 阅读 · 0 评论 -
java生成彩色中文验证码和数字验证码
一。彩色中文验证码[code="java"]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);}%>...2010-03-30 16:47:37 · 250 阅读 · 0 评论