溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jdbc實(shí)現(xiàn)用戶注冊功能代碼示例

發(fā)布時(shí)間:2020-09-24 02:23:04 來源:腳本之家 閱讀:164 作者:將進(jìn)酒-杯莫停 欄目:編程語言

本文研究的主要問題是jdbc實(shí)現(xiàn)用戶注冊功能,通過具體實(shí)例代碼學(xué)習(xí)JSP+MySQL數(shù)據(jù)庫連接、訪問方式以及增刪查改操作,具體如下。

客戶端register.jsp界面如下

jdbc實(shí)現(xiàn)用戶注冊功能代碼示例

  • “檢測”按鈕:檢測用戶名是否存在。
  • “注冊”功能:只有全部通過驗(yàn)證后才能提交到insert.jsp,insert.jsp實(shí)現(xiàn)將帳號和密碼存入user表。

//register.jsp

<head>
<link rel="stylesheet" type="text/css" href="style.css" rel="external nofollow" >
<script src="scripts/jquery-1.5.1.js" type="text/javascript"></script>
<script type="text/javascript">
   $(document).ready(function(){   
   $(":input.required").each(function(){ //必填加紅星標(biāo)識.
    var $required = $("<strong class='high'> *</strong>"); //創(chuàng)建元素
   $(this).parent().append($required);  //在div后面添加一個(gè)*
    });
   $(':input').blur(function(){  //為所有的input添加失去焦點(diǎn)事件
    var $parent = $(this).parent();
   $parent.find(".formtips").remove(); //刪除以前的提示元素
   if( $(this).is('#username') ){  // is方法判斷是否是用戶名
      if( this.value=="" || this.value.length < 6||this.value.length > 18 ){
        var errorMsg = '請輸入6-18位的用戶名.';
                $parent.append('<span class="formtips onError">'+errorMsg+'</span>');
       }
      else{
         var okMsg = '輸入正確.';
          $parent.append('<span class="formtips onSuccess">'+okMsg+'</span>');
       }
    }
       if( $(this).is('#password') ){ //密碼是否符合格式
       if( this.value=="" || ( this.value!="" 
    && !(/^\d{1,6}$/).test(this.value) ) ){ //正則式驗(yàn)證     
                   var errorMsg = '密碼必須是1-6位數(shù)字.';
         $parent.append('<span class="formtips onError">'+errorMsg+'</span>');
       }
       else{
         var okMsg = '輸入正確.';
         $parent.append('<span class="formtips onSuccess">'+okMsg+'</span>');
       }
     }
   if( $(this).is('#re_password') ){ //獲取id為re_password的節(jié)點(diǎn),監(jiān)聽當(dāng)光標(biāo)離開輸入框時(shí),運(yùn)行function方法
      var password = $("#password").val(); //獲取id為password的輸入框中的內(nèi)容
      var repassword = $("#re_password").val();
      if(password!=repassword)
      { //判斷兩個(gè)變量是否相等
        var errorMsg = '兩次密碼輸入不一致.';
         $parent.append('<span class="formtips onError">'+errorMsg+'</span>');
         }
       else{
         var okMsg = '通過驗(yàn)證.';
         $parent.append('<span class="formtips onSuccess">'+okMsg+'</span>');
       }
     }
  });  //end blur

      $(':input').keyup(function(){ //本例input元素keyup事件功能代碼與blur相同
 $(this).triggerHandler("blur"); //觸發(fā)blur事件
  });

  $(':input').focus(function(){ //本例input元素focus事件功能代碼與blur相同
   $(this).triggerHandler("blur");  //觸發(fā)blur事件
  });
    $('#send').click(function(){  //注冊按鈕
    $(":input.required").trigger('blur');
    var numError = $('form .onError').length; //class="onError"個(gè)數(shù)
    if(numError>0){  //還有錯(cuò)
      return false;
    } 
  });

  $('#res').click(function(){ //重置按鈕
    $(".formtips").remove(); 
  });
    });


</script>


</head>

<body>
  <form method="post" action="insert.jsp">
    <div class="int">
      <label>用戶名:</label> <input type="text" name="username" id="username" class="required" />
    </div>
    <div class="int">
      <label>密碼:</label> <input type="text" name="password" id="password" class="required" />
    </div>
    <div class="int">
      <label>再次輸入密碼:</label> <input type="text" id="re_password" class="required" />
    </div>
    <div class="sub">
      <input type="submit" value="注冊" id="send" /> <input type="reset" value="重輸"
        id="res" />
    </div>
  </form>
</body>

jdbc實(shí)現(xiàn)用戶注冊功能代碼示例

jdbc實(shí)現(xiàn)用戶注冊功能代碼示例

//insert.jsp

<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@page import="javaBean.userbean;"%>
<html>
<body>
  <jsp:useBean id="user" class="javaBean.userbean" scope="session" />
  <jsp:setProperty name="user" property="*" />
  用戶名: <jsp:getProperty name="user" property="username"/>
  <br><br>
  密碼: <jsp:getProperty name="user" property="password"/>
  <br><br>
  <%  out.println(user.insert());  %>
</body>

</html>

userbean.java

package javaBean;
import java.sql.*;
public class userbean{
	private String username;
	private String password;
	public void setUsername(String username) {
		this.username=username;
	}
	public void setPassword(String password) {
		this.password=password;
	}
	public String getUsername() {
		return username;
	}
	public String getPassword() {
		return password;
	}
	public String insert(){
		try{
			String url ="jdbc:mysql://localhost:3306/mysql";
			//數(shù)據(jù)庫連接字符串 
			Class.forName("org.gjt.mm.mysql.Driver").newInstance();
			//加載驅(qū)動(dòng)程序
			Connection conn= DriverManager.getConnection(url,"root","dba");
			//建立連接
			String sql="select * from login_user where username=?";
			PreparedStatement pStmt = conn.prepareStatement(sql);
			pStmt.setString(1,username);
			ResultSet rs=pStmt.executeQuery();
			if(rs.next())
			      {
				return "該用戶名已存在!";
			} else
			      {
				sql="insert into login_user values(?,?)";
				pStmt = conn.prepareStatement(sql);
				pStmt.setString(1,username);
				pStmt.setString(2,password);
				pStmt.executeUpdate();
				return "注冊成功!";
			}
		}
		catch(Exception e){
			return "注冊失??!";
		}
	}
}

jdbc實(shí)現(xiàn)用戶注冊功能代碼示例

jdbc實(shí)現(xiàn)用戶注冊功能代碼示例

jdbc實(shí)現(xiàn)用戶注冊功能代碼示例

jdbc實(shí)現(xiàn)用戶注冊功能代碼示例

總結(jié)

以上就是本文關(guān)于jdbc實(shí)現(xiàn)用戶注冊功能代碼示例的全部內(nèi)容,希望對大家有所幫助。感興趣的朋友可以繼續(xù)參閱本站其他相關(guān)專題,如有不足之處,歡迎留言指出。感謝朋友們對本站的支持!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI