随机验证码生成工具类

/**
 * 功能:验证码生成工具类
 */
package com.ascent.util;

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Random;

import javax.imageio.ImageIO;

/**
 * 功能:编写验证码生成的工具类
 *  1.获取随机字符串
 *  2.将字符串转换成图像
 * @author zmy
 * */
public class AuthImg {
	//定义随机字符串中随机出现的字符 a-z 0-9
    private static char mapTable[] = 
    { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h','i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u','v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7','8', '9' };

	/**获取随机字符串
	 * @return 随机的字符串
	 * */
    public static String random(){
    	String str="";
    	//生成5位验证码
    	for(int i=0;i<5;++i){
    		str+=mapTable[(int)(mapTable.length*Math.random())];
    	}
    	return str;
    }
    
    /**获取随机颜色对象
     * @return 随机颜色
     * */
    private static Color getRandomColor(){
    	Color col=null;
    	Random r=new Random();
    	col=new Color(r.nextInt(180),r.nextInt(180),r.nextInt(180));
    	
    	return col;
    }
    
    //将随机字符串转换成图像写到输出流
    //num-->随机字符串 out-->输出流 width-->图片宽度  height-->图片高度
    public static void imageOut(String num,OutputStream out,
    		int width,int height) throws IOException{
    	//定义缓冲区图像 rndImg
    	BufferedImage rndImg=null;
    	rndImg=new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
    	//定义二维图像画笔对象g
    	Graphics2D g=(Graphics2D)rndImg.getGraphics();
    	//设置矩形填充颜色
    	g.setColor(Color.white);
    	//画一个 宽 高 为 的矩形
    	g.fillRect(0, 0, width, height);
    	//设置显示字体与字体类型  大小
    	Font mFont=new Font("Tahoma",Font.BOLD,height*4/5);
    	g.setFont(mFont);
    	g.setColor(Color.black);//设置默认字体颜色
    	
    	String[] str1=new String[5];
    	for(int i=0;i

你可能感兴趣的:(JAVA基础)