**先写个小demo **
知识点
告诉浏览器 不要缓存图片 不然点击回车的时候 走缓存
response.setHeader("Expires", "-1");
response.setHeader("Cache-Control", "no-cache");
response.setHeader("Pragma", "no-cache");
/**
* 简单的实现
* @param response
* @throws IOException
*/
private void showDemo1(HttpServletResponse response) throws IOException {
//向浏览器打个图片
//设置能让浏览器打开 识别图片
response.setHeader("content-type", "image/jpeg");
// 1、在内存中创建一副图片
BufferedImage bufferedImage=new BufferedImage(100, 20, BufferedImage.TYPE_INT_RGB);
//2、得到图片 (画笔)
java.awt.Graphics graphics= bufferedImage.getGraphics();
// 3、向图片上写数据
graphics.setColor(Color.RED);//设置 画笔的颜色是红色
//设置 画笔的字体 new Font(null, Font.BOLD, 20) 字体、粗细、高度
graphics.setFont(new Font(null, Font.BOLD, 20));
graphics.drawString(random(), 0, 20);
//4、将图片写给浏览器
ImageIO.write(bufferedImage, "jpg", response.getOutputStream());
}
/**
* 产成一个随机数 7位
* @return
*/
private String random() {
Random random=new Random();
String num=random.nextInt(9999999)+"";//产生一个 0~9999999之间的随机数
StringBuffer stringBuffer=new StringBuffer();
for (int i = 0; i <7-num.length(); i++) {
stringBuffer.append("0");
}
num=stringBuffer.toString()+num ;
return num;
}
要是修改背景图片要用到 Graphics2D 次类
Graphics2D graphics=(Graphics2D) bufferedImage.getGraphics();
graphics.setColor(Color.green);//设置背景 一定要写在前面
graphics.fillRect (0, 0, 100, 20);// 设置背景大小。
......
graphics.setColor(Color.RED);//设置 画笔的颜色是红色 字体的颜色
//设置 画笔的字体 new Font(null, Font.BOLD, 20) 字体、粗细、高度
graphics.setFont(new Font(null, Font.BOLD, 20));
graphics.drawString(random(), 0, 20);
最后写个简单的htmL 来调用这个 图片验证
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="">
用户名:<input type="text" name="username"><br/>
密码:<input type="password" name="password"><br>
验证码:<input type="text" name="checkcode">![](/Day052/ServletRandomPicture)
<input type="button" value="注册">
</form>
</body>
</html>
public static void main(String[] args) {
char a='\u597E';
// char a='\u80BB';
System.out.println(a);
}