在JSP頁面中動態(tài)生成圖片驗證碼的方法實例
在jsp頁面中動態(tài)生成圖片驗證碼
<%@ page language="java" pageencoding="utf-8"%> <%@ page import="java.awt.*,java.awt.image.*,com.sun.image.codec.jpeg.*,java.util.*" %> <%@ taglib http://struts.apache.org/tags-bean">http://struts.apache.org/tags-bean" prefix="bean" %> <%@ taglib http://struts.apache.org/tags-html">http://struts.apache.org/tags-html" prefix="html" %> <%@ taglib http://struts.apache.org/tags-logic">http://struts.apache.org/tags-logic" prefix="logic" %> <%@ taglib http://struts.apache.org/tags-tiles">http://struts.apache.org/tags-tiles" prefix="tiles" %> myjsp.jsp在jsp頁面生成驗證碼
<% //out.clear(); //response.setcontenttype("image/jpeg");//設(shè)置響應(yīng)類型 //response.addheader("pragma","no-cache"); //response.addheader("cache-control","no-cache"); //response.adddateheader("expries",0); int width=400, height=30;//圖片的大?。▽捄透撸? //構(gòu)架畫布,第一個參數(shù)表示畫布的寬,第二個參數(shù)表示畫布的高,第三個參數(shù)的含義有待確定 bufferedimage image = new bufferedimage(width, height, bufferedimage.type_int_rgb); graphics g = image.getgraphics();//實例化畫圖對象 //以下設(shè)置背景色 g.setcolor(color.yellow); font defont=new font("宋體", font.italic, 20); g.setfont(defont); //將已經(jīng)設(shè)置好的背景顏色填充到指定的畫布區(qū)域 g.fillrect(0,0, width, height); //置字體色 g.setcolor(color.blue); int x=10,y=10,xl=550,yl=15; g.drawline(x,y,x+xl,y+yl); //在畫布中畫橢圓形,參數(shù)為橢圓的坐標(biāo),用于確定橢圓的大小 g.drawoval(0,10,200,10); //在畫布上輸出文字信息,第一個參數(shù)表示要顯示的文字,第二和第三個參數(shù)表示起始點的x、y坐標(biāo) g.drawstring("想要輸出的文字-我是陳杉",70,20); g.dispose(); servletoutputstream outstream = response.getoutputstream(); jpegimageencoder encoder =jpegcodec.createjpegencoder(outstream); encoder.encode(image); outstream.close(); %>
--將該文件保存為pic.jsp,該文件負(fù)責(zé)生成圖片!如果要在其他的頁面顯示該圖片只需要寫上
相關(guān)文章
- jsp+servlet實現(xiàn)文件上傳與下載功能
- EJB3.0部署消息驅(qū)動Bean拋javax.naming.NameNotFoundException異常
- 在JSP中使用formatNumber控制要顯示的小數(shù)位數(shù)方法
- 秒殺系統(tǒng)Web層設(shè)計的實現(xiàn)方法
- 將properties文件的配置設(shè)置為整個Web應(yīng)用的全局變量實現(xiàn)方法
- JSP使用過濾器防止Xss漏洞
- 在JSP頁面中動態(tài)生成圖片驗證碼的方法實例
- 詳解JSP 內(nèi)置對象request常見用法
- 使用IDEA編寫jsp時EL表達(dá)式不起作用的問題及解決方法
- jsp實現(xiàn)局部刷新頁面、異步加載頁面的方法
- Jsp中request的3個基礎(chǔ)實踐
- JavaServlet的文件上傳和下載實現(xiàn)方法
- JSP頁面的靜態(tài)包含和動態(tài)包含使用方法