2010-08-21 12:08:01
sedo
View Mode: Normal | Article List
May, 2006 | 1

Java 验证码

[ 2006-05-23 20:34:00 | Author: 振华 ]
该类包含数字验证码和中文汉字验证码

creatImage() 方法为数字验证码,效果:
Ŵ

creatImageGB() 方法为汉字验证码,效果:
Ŵ


Image.java 源代码
package you package;

import java.awt.*;
import java.awt.image.*;
import java.util.*;

/**
 * @author from Internet
 * @last update:2006-05-23 Ychon
 *
 */
public class Image {

 public String sRand = "";
 public String sgbRand = "";
 public Color getRandColor(int fc, int bc) { //给定范围获得随机颜色
...

Read More...
1