JSP頁面驗證碼程式碼
阿新 • • 發佈:2018-12-19
驗證碼:
作用:防止伺服器被攻擊
原理:
awt swing 圖形化介面
注意:重新整理之後驗證碼不重新整理的問題是因為瀏覽器快取,在後面追加引數即可解決,一般追加當前時間戳作為引數。
import java.awt.Color; import java.awt.Font; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import javax.imageio.ImageIO; /* * 生成一個驗證碼圖片: */ public class Test { public static void main(String[] args) throws FileNotFoundException, IOException { /* * BufferedImage : ImageIo */ // 1:獲得一個圖片緩衝區: // 170 : 寬度: 50 高: BufferedImage bi = new BufferedImage(170, 50, BufferedImage.TYPE_INT_RGB); // 2:獲得一個畫筆: Graphics2D g2= (Graphics2D)bi.getGraphics(); // 3: 設定顏色; g2.setColor(Color.WHITE); //設定畫筆的顏色: g2.fillRect(0, 0, 170-1, 50-1); // 設定一個矩形 填充圖片緩衝區: 設定了圖片緩衝區的背景顏色: // 4: 畫一個矩形: g2.setColor(Color.red); //重新調整畫筆的顏色: 設定紅: g2.drawRect(0, 0, 170-2, 50-2); // 畫矩形: // 設定字型的樣式: g2.setFont(new Font("宋體",Font.ITALIC+Font.BOLD,30));// 引數有三個: 第一個: name 字型的名稱 引數二: 字型的樣式: 引數三: // 設定字型的顏色: g2.setColor(Color.BLUE); // 設定內容: g2.drawString("hello", 3, 30); /// 將圖片輸出到外部的檔案當中: ImageIO.write(bi, "JPEG", new FileOutputStream(new File("C:/Users/Mrzhang/javaEE/javaEE-07/javaEE-12/hello.jpg"))); // GPEGF/jpg text/html tomcat web.xml } }
import java.awt.BasicStroke; 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; /* * 隨機生成一個驗證碼圖片: * */ public class VerifyCode { private int w = 70;//設定緩衝區的寬 private int h = 35;//設定緩衝區的寬 private Random r = new Random(); //// {"宋體", "華文楷體", "黑體", "華文新魏", "華文隸書", "微軟雅黑", "楷體_GB2312"} private String[] fontNames = {"宋體", "華文楷體", "黑體", "華文新魏", "華文隸書", "微軟雅黑", "楷體_GB2312"}; //源 private String codes = "23456789abcdefghjkmnpqrstuvwxyzABCDEFGHJKMNPQRSTUVWXYZ"; // 背景顏色 private Color bgColor = new Color(255, 255, 255); // 儲存隨機生成的圖片當中的內容。 private String text ; // 隨機生成顏色 private Color randomColor () { int red = r.nextInt(150); int green = r.nextInt(150); int blue = r.nextInt(150); return new Color(red, green, blue); } // 隨機生成字型 private Font randomFont () { int index = r.nextInt(fontNames.length); String fontName = fontNames[index];//根據隨機的索引,獲取隨機字型 int style = r.nextInt(4);//0,1,2,3, 0:沒有任何樣式,1,加粗,2,斜體,3,加粗和斜體 Font.bold + Font.italic int size = r.nextInt(5) + 24; //隨機生成字號 return new Font(fontName, style, size); } // 花干擾線 private void drawLine (BufferedImage image) { int num = 6;//花三條幹擾線 Graphics2D g2 = (Graphics2D)image.getGraphics(); for(int i = 0; i < num; i++) { int x1 = r.nextInt(w); int y1 = r.nextInt(h); int x2 = r.nextInt(w); int y2 = r.nextInt(h); g2.setStroke(new BasicStroke(1.5F)); g2.setColor(Color.BLUE); //給干擾線設定了顏色 g2.drawLine(x1, y1, x2, y2);//畫線 } } //隨機生成字元 private char randomChar () { int index = r.nextInt(codes.length()); return codes.charAt(index); } // 得到一個緩衝區 private BufferedImage createImage () { BufferedImage image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB); Graphics2D g2 = (Graphics2D)image.getGraphics(); // 設定背景顏色: 白色: g2.setColor(this.bgColor); //使用矩形填充背景: g2.fillRect(0, 0, w, h); return image; } // 呼叫該方法,可以得到驗證碼 public BufferedImage getImage () { BufferedImage image = createImage();//建立圖片的緩衝區 Graphics2D g2 = (Graphics2D)image.getGraphics();//得到繪製環境(畫筆) StringBuilder sb = new StringBuilder();//定義一個容器,用來裝在生成的驗證碼 //向圖片當中畫四個字元 for(int i = 0; i < 4; i++) {//迴圈四次,每次生成一個字元 String s = randomChar() + "";//隨機成成一個字元 sb.append(s); //將生成的字元放在緩衝區 float x = i * 1.0F * w / 4; //設定當前字元的x軸座標 g2.setFont(randomFont()); //設定隨機生成的字型 g2.setColor(randomColor()); //設定字元的隨機顏色 g2.drawString(s, x, h-5); //畫圖 } this.text = sb.toString(); //隨機生成的圖片的內容複製給this.text drawLine(image); //畫干擾線 return image; } // 獲取圖片當中的內容 public String getText() { return text; } // 儲存圖片到指定的輸出流 public static void output (BufferedImage image, OutputStream out) throws IOException { ImageIO.write(image, "JPEG", out); } }