java怎么显示网页验证码图片 5

 我来答
chinameepo
2012-03-21 · 超过17用户采纳过TA的回答
知道答主
回答量:55
采纳率:0%
帮助的人:40万
展开全部

这个的话,要涉及到jsp、servlet、网页,后台的请求了。我这里写一个给你看看吧。

  https://github.com/chinameepo/com_dengc_gradute_struts_learn/tree/master/Myfirst ,这个是我的github仓库,里面刚好就有个一个我自己写的输出验证码的。

使用ide:myeclipse

 jdk:1.6.0

服务器:tomcat

jwqayist
2012-03-21 · TA获得超过148个赞
知道小有建树答主
回答量:172
采纳率:100%
帮助的人:149万
展开全部
新建一个jsp考入代码:
<%@ 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);
}
%><%
out.clear();
out = pageContext.pushBody();
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("Times New Roman",Font.PLAIN,18));

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);
}

String sRand="";
for (int i=0;i<4;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.setAttribute("rand",sRand);

g.dispose();

ImageIO.write(image, "JPEG", response.getOutputStream());
%>
需要验证码的地方
<img alt="看不清点我!" onclick="loadimage()" name="randImage" id="randImage" src="image.jsp" width="60" height="20">引入即可,
更多追问追答
追问
好像我没说清楚,我是说一个小程序,实现登陆网页,要求输入验证码,怎么显视验证码,不用识别验证码,手动输入
追答
这个就是显示验证码,然后由用户输入,
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
推荐于2016-09-17
展开全部
用3大框架做的么?
<img src="image">src填写图片action的名字
在struts配置图片action
<action name="image" class="org.tarena.util.ImageUtil">
<result name="success" type="stream">
<param name="inputName">is</param>
</result>
</action>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式