Java實(shí)現(xiàn)登錄與注冊頁面
用java實(shí)現(xiàn)的登錄與注冊頁面,實(shí)現(xiàn)了客戶端(瀏覽器)到服務(wù)器(Tomcat)再到后端(servlet程序)數(shù)據(jù)的交互。這里在注冊頁面加入了驗(yàn)證碼驗(yàn)證。
注冊的html代碼,頁面非常丑??!請見諒。。
<body> <fieldset id=""> ? <legend>注冊頁面</legend> ? <form action="/day02/register2" method="post" id="form" "> ? ? <table> ? ? ? <tr> ? ? ? ? <td>用戶名:</td> ? ? ? ? <td><input type="text" name="userName" /><span id="span1"></span></td> ? ? ? </tr> ? ? ? <tr> ? ? ? ? <td> ? ? ? ? ? 密碼: ? ? ? ? </td> ? ? ? ? <td> ? ? ? ? ? <input type="password" name="password" /> ? ? ? ? </td> ? ? ? </tr> ? ? ? <tr> ? ? ? ? <td> ? ? ? ? ? 確認(rèn)密碼: ? ? ? ? </td> ? ? ? ? <td> ? ? ? ? ? <input type="password" name="repassword" /> ? ? ? ? ? <span id="span2"></span> ? ? ? ? </td> ? ? ? </tr> ? ? ? <tr id="tr4"> ? ? ? ? <td> ? ? ? ? ? 性別: ? ? ? ? </td> ? ? ? ? <td> ? ? ? ? ? <input type="radio" name="sex" value="男" />男 ? ? ? ? ? <input type="radio" name="sex" value="女" />女 ? ? ? ? ? <span id="span3"></span> ? ? ? ? </td> ? ? ? </tr> ? ? ? <tr> ? ? ? ? <td>愛好:</td> ? ? ? ? <td> ? ? ? ? ? <input type="checkbox" name="hobby" value="唱" />唱 ? ? ? ? ? <input type="checkbox" name="hobby" value="跳" />跳 ? ? ? ? ? <input type="checkbox" name="hobby" value="rap" />rap ? ? ? ? ? <input type="checkbox" name="hobby" value="籃球" />籃球 ? ? ? ? ? <span id="span4"></span> ? ? ? ? </td> ? ? ? </tr> ? ? ? <tr> ? ? ? ? <td>國籍:</td> ? ? ? ? <td> ? ? ? ? ? <select name="country" id="country"> ? ? ? ? ? ? <option value="none">--請選擇國籍--</option> ? ? ? ? ? ? <option value="中國">中國</option> ? ? ? ? ? ? <option value="韓國">韓國</option> ? ? ? ? ? ? <option value="日本">日本</option> ? ? ? ? ? ? <option value="美國">美國</option> ? ? ? ? ? </select> ? ? ? ? ? <span id="span5"></span> ? ? ? ? </td> ? ? ? </tr> ? ? ? <tr> ? ? ? ? <td>自我評價:</td> ? ? ? ? <td> ? ? ? ? ? <textarea rows="10px" cols="20px" id="textarea" name="describe" ></textarea> ? ? ? ? </td> ? ? ? </tr> ? ? <tr> ? ? ? ? <td> ? ? ? ? ? 驗(yàn)證碼: ? ? ? ? </td> ? ? ? ? <td> ? ? ? ? ? <input type="text" name="check"/> ? ? ? ? ? <img src="/day02/demo" id="img" onclick="checkImg()" style = "cursor: pointer"> ? ? ? ? ? <a href="javascript:void(0);" onclick="checkImg()">換一張</a> ? ? ? ? </td> ? ? ? </tr> ? ? </table> ? ? <input type="submit" id="btn2" value="提交" /> ? ? <input type="button" id="btn1" value="驗(yàn)證" /> ? </form> </fieldset> </body> <script type="text/javascript"> ? function checkImg() { ? ? var img = document.getElementById("img"); ? ? img.src ="/day02/demo?"+new Date().getTime() ? } </script>
注冊頁面截圖
這里需要注意的是我用的是Tomcat服務(wù)器,因?yàn)樗渲袥]有mysql驅(qū)動,所以需要手動添加到Tomcat的lib目錄下。
還有在web.xml中添加了全局配置主要是為了項(xiàng)目中需要改編碼的方便
<context-param> ? ? ? ? <param-name>encode</param-name> ? ? ? ? <param-value>UTF-8</param-value> ? ? </context-param>
這里是生成驗(yàn)證碼的程序,在我的上篇文章有詳細(xì)講解
@WebServlet(urlPatterns = "/demo") public class CheckImg extends HttpServlet { ? ? //復(fù)寫HttpServlet中的doGet方法 ? ? public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, ? ? ? ? ? ? IOException{ ? ? ? ? //準(zhǔn)備一張畫紙,將驗(yàn)證碼中的數(shù)字字母寫到這張畫紙中 ? ? ? ? int width = 120; ? ? ? ? int height = 30; ? ? ? ? BufferedImage bufi = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); ? ? ? ? //這里面的width、height、就是這張畫紙的長寬。BufferedImage.TYPE_INT_RGB就是這張畫紙基于 ? ? ? ? //RGB三原色來進(jìn)行畫 ? ? ? ? //獲取一個畫筆對象,給圖片上畫畫 ? ? ? ? Graphics2D g = (Graphics2D) bufi.getGraphics(); ? ? ? ? //設(shè)置畫筆顏色 ? ? ? ? g.setColor(Color.WHITE); ? ? ? ? //將這個顏色填充到整個畫紙 ? ? ? ? g.fillRect(0,0,width,height); ? ? ? ? //定義圖片上可以寫什么數(shù)據(jù) ? ? ? ? String data = "QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm1234567890"; ? ? ? ? //定義書寫在畫紙上的起始位置 ? ? ? ? int x =15; ? ? ? ? int y =25; ? ? ? ? //定義一個隨機(jī)數(shù) ? ? ? ? Random r = new Random(); ? ? ? ? //創(chuàng)建一個字符串緩沖區(qū) ? ? ? ? StringBuilder sb = new StringBuilder(); ? ? ? ? //定義一個循環(huán)給畫紙上寫四個數(shù) ? ? ? ? for(int i = 0; i < 4; i++){ ? ? ? ? ? ? //從data中隨機(jī)獲取一個下標(biāo)的數(shù)據(jù) ? ? ? ? ? ? char c = data.charAt(r.nextInt(data.length())); ? ? ? ? ? ? sb.append(c+""); ? ? ? ? ? ? //隨機(jī)生成畫筆的顏色,RGB三原色隨機(jī)在0-256中隨機(jī)生成 ? ? ? ? ? ? g.setColor(new Color(r.nextInt(256),r.nextInt(256),r.nextInt(256))); ? ? ? ? ? ? //設(shè)置字體 ? ? ? ? ? ? g.setFont(new Font("黑體",Font.BOLD,26)); ? ? ? ? ? ? double theta =(30 - (r.nextInt(60)))*Math.PI/180; ? ? ? ? ? ? g.rotate(theta,x,24); ? ? ? ? ? ? //設(shè)置數(shù)據(jù)旋轉(zhuǎn) ? ? ? ? ? ? //g.rotate((20)*Math.PI/180,x,y); ? ? ? ? ? ? //將數(shù)據(jù)寫到畫紙上 ? ? ? ? ? ? g.drawString(c+"",x,y); ? ? ? ? ? ? g.rotate(-theta,x,24); ? ? ? ? ? ? //設(shè)置完旋轉(zhuǎn)要調(diào)回,防止數(shù)據(jù)旋轉(zhuǎn)的看不到 ? ? ? ? ? ? //g.rotate(-((20)*Math.PI/180),x,y); ? ? ? ? ? ? //每寫完一個調(diào)整下一個數(shù)據(jù)寫的位置 ? ? ? ? ? ? x += 25; ? ? ? ? } ? ? ? ? HttpSession session = req.getSession(); ? ? ? ? session.setAttribute("checkNum",sb.toString()); ? ? ? ? //添加線類型的干擾信息 ? ? ? ? for(int i = 0; i < 15 ; i++){ ? ? ? ? ? ? //同樣設(shè)置線的顏色 ? ? ? ? ? ? g.setColor(new Color(r.nextInt(256),r.nextInt(256),r.nextInt(256))); ? ? ? ? ? ? //開始劃線,這里需要的四個參數(shù)中前兩個是線開頭的左邊,后邊兩個是線結(jié)束的坐標(biāo) ? ? ? ? ? ? g.drawLine(r.nextInt(width),r.nextInt(height),r.nextInt(width),r.nextInt(height)); ? ? ? ? } ? ? ? ? //添加點(diǎn)類型干擾信息 ? ? ? ? for (int i = 0 ; i < 150 ; i++){ ? ? ? ? ? ? //設(shè)置點(diǎn)的顏色 ? ? ? ? ? ? g.setColor(new Color(r.nextInt(256),r.nextInt(256),r.nextInt(256))); ? ? ? ? ? ? //開始畫點(diǎn),實(shí)質(zhì)上這是畫橢圓,將上半軸半徑,左半軸半徑設(shè)置為0就可以看成是一個點(diǎn) ? ? ? ? ? ? g.drawOval(r.nextInt(width),r.nextInt(height),0,0); ? ? ? ? } ? ? ? ? //這個時候并沒有在這張紙上書寫任何內(nèi)容,但是已經(jīng)可以像客戶端響應(yīng)請求了 ? ? ? ? ImageIO.write(bufi, "jpg", resp.getOutputStream()); ? ? } }
這是注冊頁面的代碼。
@WebServlet(urlPatterns = "/register2") public class Register extends HttpServlet { ? ? // ? ? @Override ? ? protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { ? ? ? ? doPost(req,resp); ? ? } ? ? @Override ? ? protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { ? ? ? ? //獲取在web.xml中的配置的全局屬性 ? ? ? ? String encode = req.getServletContext().getInitParameter("encode"); ? ? ? ? //為了防止亂碼設(shè)置編碼 ? ? ? ? req.setCharacterEncoding(encode); ? ? ? ? resp.setContentType("text/html;charset="+encode); ? ? ? ? //獲得請求過來的資源 ? ? ? ? String userName = req.getParameter("userName"); ? ? ? ? String password = req.getParameter("password"); ? ? ? ? String repassword = req.getParameter("repassword"); ? ? ? ? String sex = req.getParameter("sex"); ? ? ? ? String[] hobby = req.getParameterValues("hobby"); ? ? ? ? String country = req.getParameter("country"); ? ? ? ? String describe = req.getParameter("describe"); ? ? ? ? //這里將獲取到的請求數(shù)據(jù)都在控制臺上打印了一遍 ? ? ? ? //看是否拿到了這些數(shù)據(jù) ? ? ? ? System.out.println(userName); ? ? ? ? System.out.println(password); ? ? ? ? System.out.println(repassword); ? ? ? ? System.out.println(sex); ? ? ? ? System.out.println(hobby[0]); ? ? ? ? System.out.println(country); ? ? ? ? System.out.println(describe); ? ? ? ? //這里只加了簡單的判斷,判斷帳號是否填寫,以及兩次密碼是否一致 ? ? ? ? //判斷信息是否填寫 ? ? ? ? if(userName==null||password==null||repassword==null||sex==null||hobby==null||country==null||describe==null){ ? ? ? ? ? ? resp.getWriter().write("所有的數(shù)據(jù)都不能為空,請重新<a href = '/day02'>填寫</a>"); ? ? ? ? ? ? return; ? ? ? ? } ? ? ? ? //判斷兩次密碼是否一致 ? ? ? ? if(!password.equals(repassword)){ ? ? ? ? ? ? resp.getWriter().write("兩次密碼輸入不一致,請重新<a href = '/day02'>填寫</a>"); ? ? ? ? ? ? return; ? ? ? ? } ? ? ? ? ?//判斷驗(yàn)證碼輸入是否正確 ? ? ? ? ?if(!checkImg.equalsIgnoreCase(check)){ ? ? ? ? ? ? resp.getWriter().write("驗(yàn)證碼輸入錯誤"); ? ? ? ? ? ? return; ? ? ? ? } ? ? ? ? try { ? ? ? ? ?? ?//加載MySQL的數(shù)據(jù)庫驅(qū)動 ? ? ? ? ? ? Class.forName("com.mysql.jdbc.Driver"); ? ? ? ? ? ? //這里我在數(shù)據(jù)庫中添加了一個名為day02的數(shù)據(jù)庫 ? ? ? ? ? ? String url = "jdbc:mysql:///day02"; ? ? ? ? ? ? //默認(rèn)是系統(tǒng)管理員的賬戶 ? ? ? ? ? ? String user = "root"; ? ? ? ? ? ? //這里你自己設(shè)置的數(shù)據(jù)庫密碼 ? ? ? ? ? ? String passw = "xxxxxx"; ? ? ? ? ? ? //獲取到數(shù)據(jù)庫的連接 ? ? ? ? ? ? Connection connection = DriverManager.getConnection(url, user, passw); ? ? ? ? ? ? //獲取到執(zhí)行器 ? ? ? ? ? ? Statement stmt = connection.createStatement(); ? ? ? ? ? ? //需要執(zhí)行的sql語句 ? ? ? ? ? ? String sql = "insert into users values (null,'"+userName+"','"+password+"','"+repassword+"','"+sex+"','"+ Arrays.toString(hobby)+"','"+country+"','"+describe+"')"; ? ? ? ? ? ? //建議打印一下sql語句,放在數(shù)據(jù)庫中看是否能將數(shù)據(jù)添加到數(shù)據(jù)庫中 ? ? ? ? ? ? System.out.println(sql); ? ? ? ? ? ? //執(zhí)行sql語句 ? ? ? ? ? ? int i = stmt.executeUpdate(sql); ? ? ? ? ? ? //添加成功上邊這個執(zhí)行器就會返回1 ? ? ? ? ? ? if(i==1){ ? ? ? ? ? ? ? ? resp.getWriter().write("注冊成功,請<a href = '/day02/login.html'>登錄</a>"); ? ? ? ? ? ? }else{ ? ? ? ? ? ? ? ? resp.getWriter().write("注冊失敗,請返回重新<a href = '/day02/'></a>"); ? ? ? ? ? ? } ? ? ? ? ? ? stmt.close(); ? ? ? ? ? ? connection.close(); ? ? ? ? }catch (Exception e){ ? ? ? ? ? ? e.printStackTrace(); ? ? ? ? } ? ? } }
登錄頁面,同樣非常丑。就是簡單的三個input標(biāo)簽
登錄頁面的html代碼
<body> <form action="login"> ? ? 用戶名:<input type="text" name="user"><br/> ? ? 密碼:<input type="password" name="password"><br/> ? ? <input type="submit" name="提交"> ? ? <a href="/register2" rel="external nofollow" >注冊</a> </form> </body>
登錄頁面的java代碼,因?yàn)橹挥袔ぬ柮艽a,就只和數(shù)據(jù)庫中的帳號密碼進(jìn)行判斷
@WebServlet(urlPatterns = "/login") public class login extends HttpServlet { ? ? @Override ? ? protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { ? ? ? ? doPost(req,resp); ? ? } ? ? @Override ? ? protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { ? ? ? ? //先獲取到全局配置中的設(shè)置的編碼 ? ? ? ? String encode = req.getServletContext().getInitParameter("encode"); ? ? ? ? //設(shè)置請求和響應(yīng)的編碼 ? ? ? ? req.setCharacterEncoding(encode); ? ? ? ? resp.setContentType("text/html;charset="+encode); ? ? ? ? try { ? ? ? ? ?? ?//從登錄頁面拿到用戶輸入的用戶名 ? ? ? ? ? ? String name = req.getParameter("user"); ? ? ? ? ? ? //從登錄頁面拿到用戶輸入的密碼 ? ? ? ? ? ? String pwd = req.getParameter("password"); ? ? ? ? ? ? //還是在控制臺上輸出看是否拿到的帳號密碼 ? ? ? ? ? ? System.out.println("用戶名:" +name); ? ? ? ? ? ? System.out.println("密碼:"+ pwd); ? ? ? ? ? ? //下邊就是加載數(shù)據(jù)庫的過程 ? ? ? ? ? ? Class.forName("com.mysql.jdbc.Driver"); ? ? ? ? ? ? String url = "jdbc:mysql:///day02"; ? ? ? ? ? ? String user = "root"; ? ? ? ? ? ? String password = "xxxxxxx"; ? ? ? ? ? ? String sql = "select * from users where userName = '"+name+"'"; ? ? ? ? ? ? String sql2 = "select * from users where password = '"+pwd+"'"; ? ? ? ? ? ? Connection conn = DriverManager.getConnection(url, user, password); ? ? ? ? ? ? //這里我選擇是創(chuàng)建了兩個執(zhí)行器,如果一個執(zhí)行器執(zhí)行兩個sql語句。就會出現(xiàn)異常 ? ? ? ? ? ? ? ? ? Statement stmt = conn.createStatement(); ? ? ? ? ? ? Statement stmt2 =conn.createStatement(); ? ? ? ? ? ? ResultSet rs = stmt.executeQuery(sql); ? ? ? ? ? ? ResultSet rs2 = stmt2.executeQuery(sql2); ? ? ? ? ? ? //判斷用戶輸入的帳號是否在數(shù)據(jù)庫中 ? ? ? ? ? ? if (rs.next()){ ? ? ? ? ? ? ? ? System.out.print("用戶名:" + rs.getString("userName") + "\t"); ? ? ? ? ? ? }else{ ? ? ? ? ? ? ? ? resp.getWriter().write("對不起你帳號名有誤,請<a href='/day02'>注冊</a>"); ? ? ? ? ? ? } ? ? ? ? ? ? //通過了帳號的判斷,就對密碼進(jìn)行判斷,同樣是判斷密碼是否與數(shù)據(jù)庫中的密碼匹配 ? ? ? ? ? ? if(rs2.next()){ ? ? ? ? ? ? ? ? resp.getWriter().write("登錄成功,點(diǎn)擊跳轉(zhuǎn)<a ); ? ? ? ? ? ? ? ? System.out.print("密碼:" + rs.getString("password") + "\t"); ? ? ? ? ? ? }else{ ? ? ? ? ? ? ? ? resp.getWriter().write("對不起你密碼有誤,請<a href='/day02'>注冊</a>"); ? ? ? ? ? ? } ? ? ? ? }catch (Exception e){ ? ? ? ? ? ? e.printStackTrace(); ? ? ? ? } ? ? } }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- javaweb實(shí)現(xiàn)注冊登錄頁面
- JavaWeb實(shí)現(xiàn)用戶登錄注冊功能實(shí)例代碼(基于Servlet+JSP+JavaBean模式)
- Java+mysql用戶注冊登錄功能
- JAVA簡單實(shí)現(xiàn)MD5注冊登錄加密實(shí)例代碼
- Servlet+JavaBean+JSP打造Java Web注冊與登錄功能
- JavaWeb簡單用戶登錄注冊實(shí)例代碼(有驗(yàn)證碼)
- Java簡易登錄注冊小程序
- JavaWeb實(shí)現(xiàn)用戶登錄與注冊功能
- JavaWeb實(shí)現(xiàn)用戶登錄與注冊功能(服務(wù)器)
- java實(shí)現(xiàn)登錄注冊界面
相關(guān)文章
詳解java封裝返回結(jié)果與RestControllerAdvice注解
這篇文章主要為大家介紹了java封裝返回結(jié)果與RestControllerAdvice注解實(shí)例,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-09-09java保證對象在內(nèi)存中唯一性的實(shí)現(xiàn)方法
這篇文章主要介紹了java如何保證對象在內(nèi)存中的唯一性,如果創(chuàng)建多個對象的話,可能會引發(fā)出各種各樣的問題,這時,就需要我們保證這個對象在內(nèi)存中的唯一性,需要的朋友可以參考下2019-06-06java中struts2實(shí)現(xiàn)簡單的文件上傳與下載
這篇文章主要為大家詳細(xì)介紹了java中struts2實(shí)現(xiàn)簡單的文件上傳與下載的相關(guān)資料,感興趣的小伙伴們可以參考一下2016-05-05idea顯示springboot多服務(wù)啟動界面service操作
這篇文章主要介紹了idea顯示springboot多服務(wù)啟動界面service操作,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-09-09