当前位置: 网学 > 编程文档 > JSP > 正文

JSP汉字验证码的实现代码

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/17
下载{$ArticleTitle}原创论文样式
 image.getGraphics(); 
  //创建随机类的实例 
  Random random = new Random(); 
  // 设定图像背景色(因为是做背景,所以偏淡) 
  g.setColor(getRandColor(random, 200, 250)); 
  g.fillRect(0, 0, width, height); 
  //备选字体 
  String fontTypes = { 
      \"宋体\", \"新宋体\", \"黑体\", \"楷体\", \"隶书\"}; 
  int fontTypesLength = fontTypes.length; 
  //在图片背景上增加噪点 
  g.setColor(getRandColor(random, 160, 200)); 
  g.setFont(new Font(\"Times New Roman\", Font.PLAIN, 14)); 
  for (int i = 0; i < 6; i++) { 
    g.drawString(\"*********************************************\", 0, 5 * (i + 2)); 
  } 
  //取随机产生的认证码(6个汉字) 
  //保存生成的汉字字符串 
  String sRand = \"\"; 
  for (int i = 0; i < 6; i++) { 
    int start = random.nextInt(length); 
    String rand = base.substring(start, start + 1); 
    sRand += rand; 
  //设置字体的颜色 
    g.setColor(getRandColor(random, 10, 150)); 
  //设置字体 
    g.setFont(new Font(fontTypes[random.nextInt(fontTypesLength)], Font.BOLD, 18 + random.nextInt(6))); 
  //将此汉字画到图片上 
    g.drawString(rand, 24 * i + 10 + random.nextInt(8), 24); 
  } 
  //将认证码存入session 
  session.setAttribute(\"rand\", sRand); 
  g.dispose();  [Page]
  //输出图象到页面 
  ImageIO.write(image, \"JPEG\", response.getOutputStream()); 
%>

  • 上一篇资讯: Jscript的多线程的脚本
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号