国产激情自拍_国产9色视频_丁香花在线电影小说观看 _久久久久国产精品嫩草影院

首頁 > 編程 > JSP > 正文

在jsp中用bean和servlet聯合實現用戶注冊、登錄

2020-07-27 21:50:05
字體:
來源:轉載
供稿:網友

聲明:作者原創,版權所有。未經授權,不得轉載
在jsp中用bean和servlet聯合實現用戶注冊、登錄

作者:imagebear
版權:imagebear

本例需要的軟件和運行環境:
1、Windows2000 Server操作系統
2、jdk1.4
3、JCreator2.5(java源碼編輯調試器,吐血推薦!)
4、Macromedia JRun MX
5、Macromedia Dreamweaver MX(非必需)
6、MySQL數據庫(最好安裝MySQL Control Center)

一、數據庫設計
用MySQL Control Center打開MySQL數據庫,新建數據庫shopping,在其下新建表tbl_user,其中各字段設置如下:


二、編寫連接數據庫bean:DBConn.java


//DBConn.java

//include required classes
import java.sql.*;

//==========================================
// Define Class DBConn
//==========================================
public class DBConn
{
 public String sql_driver = "org.gjt.mm.mysql.Driver";
 public String sql_url = "jdbc:mysql://localhost:3306";
 public String sql_DBName = "shopping";
 public String user = "sa";
 public String pwd = ";

 Connection conn = null;
 Statement stmt = null;
 ResultSet rs = null;

 public boolean setDriver(String drv)
 {
  this.sql_driver = drv;
  return true;
 }

 public String getDriver()
 {
  return this.sql_driver;
 }

 public boolean setUrl(String url)
 {
  this.sql_url = url;
  return true;
 }

 public boolean setDBName(String dbname)
 {
  this.sql_DBName = dbname;
  return true;
 }

 public String getDBName()
 {
  return this.sql_DBName;
 }

 public boolean setUser(String user)
 {
  this.user = user;
  return true;
 }

 public String getUser()
 {
  return this.user;
 }

 public boolean setPwd(String pwd)
 {
  this.pwd = pwd;
  return true;
 }

 public String getPwd()
 {
  return this.pwd;
 }

 public DBConn()
 {
  try{
   Class.forName(sql_driver);//加載數據庫驅動程序
   this.conn = DriverManager.getConnection(sql_url + "/" + sql_DBName + "?user=" + user + "&password=" + pwd + "&useUnicode=true&characterEncoding=gb2312");
   this.stmt = this.conn.createStatement();
  }catch(Exception e){
   System.out.println(e.toString());
  }
 }

                //執行查詢操作
 public ResultSet executeQuery(String strSql)
 {
  try{
   this.rs = stmt.executeQuery(strSql);
   return this.rs;
  }catch(SQLException e){
   System.out.println(e.toString());
   return null;
  }catch(NullPointerException e){
   System.out.println(e.toString());
   return null;
  }
 }

                //執行數據的插入、刪除、修改操作
 public boolean execute(String strSql)
 {
  try{
   if(this.stmt.executeUpdate(strSql) == 0)
    return false;
   else
    return true;
  }catch(SQLException e){
   System.out.println(e.toString());
   return false;
  }catch(NullPointerException e){
   System.out.println(e.toString());
   return false;
  }
 }

                //結果集指針跳轉到某一行
 public boolean rs_absolute(int row)
 {
  try{
   this.rs.absolute(row);
   return true;
  }catch(SQLException e){
   System.out.println(e.toString());
   return false;
  }
 }

 public void rs_afterLast()
 {
  try{
   this.rs.afterLast();
  }catch(SQLException e){
   System.out.println(e.toString());
  }
 }

 public void rs_beforeFirst()
 {
  try{
   this.rs.beforeFirst();
  }catch(SQLException e){
   System.out.print(e.toString());
  }
 }

 public void rs_close()
 {
  try{
   this.rs.close();
  }catch(SQLException e){
   System.out.print(e.toString());
  }
 }

 public void rs_deleteRow()
 {
  try{
   this.rs.deleteRow();
  }catch(SQLException e){
   System.out.print(e.toString());
  }
 }

 public boolean rs_first()
 {
  try{
   this.rs.first();
   return true;
  }catch(SQLException e){
   System.out.print(e.toString());
   return false;
  }
 }

 public String rs_getString(String column)
 {
  try{
   return this.rs.getString(column);
  }catch(SQLException e){
   System.out.println(e.toString());
   return null;
  }
 }

                //此方法用于獲取大段文本,
                //將其中的回車換行替換為<br>
                //輸出到html頁面
 public String rs_getHtmlString(String column)
 {
  try{
   String str1 = this.rs.getString(column);
   String str2 = "/r/n";
   String str3 = "<br>";
   return this.replaceAll(str1,str2,str3);
  }catch(SQLException e){
   System.out.println(e.toString());
   return null;
  }
 }

                //把str1字符串中的str2字符串替換為str3字符串
 private static String replaceAll(String str1,String str2,String str3)
 {
  StringBuffer strBuf = new StringBuffer(str1);
     int index=0;
  while(str1.indexOf(str2,index)!=-1)
  {
   index=str1.indexOf(str2,index);
   strBuf.replace(str1.indexOf(str2,index),str1.indexOf(str2,index)+str2.length(),str3);
   index=index+str3.length();

    str1=strBuf.toString();
  }
  return strBuf.toString();
 }

 public int rs_getInt(String column)
 {
  try{
   return this.rs.getInt(column);
  }catch(SQLException e){
   System.out.println(e.toString());
   return -1;
  }
 }

 public int rs_getInt(int column)
 {
  try{
   return this.rs.getInt(column);
  }catch(SQLException e){
   System.out.println(e.toString());
   return -1;
  }
 }

 public boolean rs_next()
 {
  try{
   return this.rs.next();
  }catch(SQLException e){
   System.out.println(e.toString());
   return false;
  }
 }

                //判斷結果集中是否有數據
 public boolean hasData()
 {
  try{
   boolean has_Data = this.rs.first();  
   this.rs.beforeFirst();
   return has_Data;
  }catch(SQLException e){
   System.out.println(e.toString());
   return false;
  }
 }

 public boolean rs_last()
 {
  try{
   return this.rs.last();
  }catch(SQLException e){
   System.out.println(e.toString());
   return false;
  }
 }

 public boolean rs_previous()
 {
  try{
   return this.rs.previous();
  }catch(Exception e){
   System.out.println(e.toString());
   return false;
  }
 }

                //main方法,調試用
 public static void main(String args[])
 {
  try{
   DBConn myconn = new DBConn();
   //myconn.setDBName("shopping");
   //myconn.DBConn();
   //myconn.execute("Insert Into tbl_test(id,name) values('10','shandaer')");
   //myconn.execute("Update tbl_test set name='yyyyyyyyyyyy' where id=10");
   //myconn.execute("Delete from tbl_test where id=1");
   ResultSet rs = myconn.executeQuery("select * from tbl_user order by id desc limit 1");
   //boolean hasData = myconn.hasData();
   //System.out.println("has data:" + hasData);
   //rs.first();
   while (myconn.rs.next()) 
   {
    int id = myconn.rs_getInt("id") + 1;
    System.out.print(id);
    System.out.println(myconn.rs_getInt("id") + myconn.rs_getString("name"));

    //System.out.println('/n' + myconn.rs_getHtmlString("name"));
    //System.out.println(myconn.rs.getString("name") + myconn.rs_getInt(1));
   }
  }catch(Exception e){
   System.err.println(e.toString());
  }
 }

}

聲明:因為使用的是MySQL數據庫,所以需要MySQL數據庫的驅動
下載后請將org包放至DBConn.java所在目錄下
以確保該bean能正常運行

 

三、編寫用戶注冊的bean:reg.java


//reg.java

//import required classes
import java.sql.*;

public class reg
{
 public int newID = 0;
 public boolean result = false;
 public boolean reg(String username,String password,String confirm,String email)
 {
  try{
   if(!this.checkUser(username))
    return false;
   if(!this.checkPwd(password))
    return false;
   if(!this.verifyPwd(password,confirm))
    return false;
   if(!this.checkEmail(email))
    return false;
   if(!this.userNotExit(username))
    return false;
   this.getNewID(); 
   this.result = this.register(username,password,confirm,email);
   return this.result;
  }catch(Exception e){
   System.out.println(e.toString());
   return false;
  }
 }//End boolean reg

 public boolean checkUser(String user)
 {
  try{  
   if(user.indexOf("'")!=-1)
   {
    System.out.println("姓名中含有非法字符!");
    return false;
   }else
    return true;
  }catch(Exception e){
   System.out.println(e.toString());
   return false;
   }
 }

 public boolean checkPwd(String pwd)
 {
  try{
   if(pwd.indexOf("'")!=-1)
   {
    System.out.println("密碼中含有非法字符!");
    return false;
   }else
    return true;
  }catch(Exception e){
   System.out.println(e.toString());
   return false;
  }
 }

 public boolean verifyPwd(String pwd,String confirm)
 {
  try{
   if(!pwd.equals(confirm))
   {
    System.out.println("兩次輸入的密碼不一致!");
    return false;
   }else
    return true;
  }catch(Exception e){
   System.out.println(e.toString());
   return false;
  }
 }

 public boolean checkEmail(String email)
 {
  try{
   if(email.indexOf("'")!=-1)
   {
    System.out.println("E-mail中含有非法字符!");
    return false;
   }else
    return true;
  }catch(Exception e){
   System.out.println(e.toString());
   return false;
  }
 }

 public boolean userNotExit(String user)
 {
  try{
   DBConn userDBConn = new DBConn();
   userDBConn.executeQuery("select * from tbl_user where name='" + user + "'");
   if(userDBConn.rs_next())
   {
    System.out.println("用戶名已存在,請選擇其它的用戶名!");
    return false;
   }else
    return true;
  }catch(Exception e){
   System.out.println(e.toString());
   return false;
   }
 }

 public int getNewID()
 {
  try{
   DBConn newIDDBConn = new DBConn();
   newIDDBConn.executeQuery("select * from tbl_user order by id desc limit 1");
   if(newIDDBConn.rs_next())
   {
    this.newID = newIDDBConn.rs_getInt("id") + 1;
    System.out.println(this.newID);
   }else{
    this.newID = 1;
   }
   return this.newID;
  }catch(Exception e){
   System.out.println(e.toString());
   return -1;
   }   
 }

 public int getID()
 {
  return this.newID;
 }

 public boolean register(String username,String password,String confirm,String email)
 {
  try{
   DBConn regDBConn = new DBConn();
   String strSQL = "insert into tbl_user(id,name,pwd,email) values('" + this.newID +"','" + username + "','" + password + "','" + email + "')";
   regDBConn.execute(strSQL);
   return true;
  }catch(Exception e){
   System.out.println(e.toString());
   return false;
   }
 }

 public static void main(String args[])
 {
  try{

   reg newreg = new reg();  

   System.out.println(newreg.reg("sssssssss","ssssss","ssssss","imagebear@163.com"));

   DBConn myconn = new DBConn();
   myconn.executeQuery("select * from tbl_user");
   while(myconn.rs_next())
   {
    System.out.println(myconn.rs_getInt("id") + "    " + myconn.rs_getString("name") + "    " + myconn.rs_getString("pwd") + "    " + myconn.rs_getString("email"));
   }
   System.out.println(newreg.getID());
  }catch(Exception e){
   System.err.println(e.toString());
  }
 }
};

說明:
1、該bean文件應和上文所述DBConn.class文件放于同一目錄下
2、本例主要研究注冊的過程,其中的Email檢測等方法并不完善,若要應用請自行設計方法

 


四、編寫用戶登陸的Servlet:login.java


//login.java

//import required classes
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.sql.*;

//class login
public class login extends HttpServlet
{
 public void doGet(HttpServletRequest req,HttpServletResponse res)
 throws IOException,ServletException
 {
  String username = req.getParameter("username");
  String password = req.getParameter("password");
  if(this.checklogin(username,password))
  {
   Cookie mylogin = new Cookie("username",username);
   mylogin.setVersion(1);
   mylogin.setPath("/");
   mylogin.setComment("Your login username");
   res.addCookie(mylogin);
  }
  //Cookie[] myCookies = req.getCookies();
  //String nameValue = this.getCookieValue(myCookies,"username","not found");
  //PrintWriter out = res.getWriter();
  //out.println("username" + ":" + nameValue);
  //out.println("Test Cookie Success!");
  res.sendRedirect("/index.jsp");
 }

 public void doPost(HttpServletRequest req,HttpServletResponse res)
 throws IOException,ServletException
 {
  doGet(req,res);
 }

 public static String getCookieValue(Cookie[] cookies,String cookieName,String defaultValue)
 {
  for(int i=0;i<cookies.length;i++) {
  Cookie cookie = cookies[i];
  if (cookieName.equals(cookie.getName()))
  return(cookie.getValue());
 }
  return(defaultValue);
 }



 public boolean checklogin(String username,String password)
 {
  try{
   DBConn loginConn = new DBConn();
   loginConn.executeQuery("select * from tbl_user where name='" + username + "'");
   if(loginConn.rs_next())
   {
    System.out.println("Connection created!");
    if(loginConn.rs_getString("pwd").trim().equals(password))
    {
     System.out.println(loginConn.rs_getString("name"));
     return true;
    }
    else
    {
     return false;
    }
   }
   System.out.println("Test Login Success!");
   return false;
  }catch(Exception e){
   System.out.println(e.toString());
   return false;
   }
 }

 public static void main(String args[])
 {
  login mylogin = new login();
  System.out.println(mylogin.checklogin("shandong","shandong"));
 }

}

說明:
1、默認的jdk1.4中并沒有servlet包,請至sun公司網頁下載servlet.jar,放至jdk目錄下的jre/lib/目錄下,并在JCreator中設置jdk處添加servlet.jar包 

2、本Servlet用于檢驗用戶名和密碼,若正確則將用戶名寫入Cookie,完成后將當前頁重定向到index.jsp頁

 


五、編寫檢測用戶是否已經登陸的bean:checkLogin.java

//checkLogin.java

//import required classes
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

//class checkLogin
public class checkLogin
{
 public String username = ";

 public boolean check(HttpServletRequest req,HttpServletResponse res)
 throws IOException,ServletException
 {
  String cookieName = "username";
  Cookie[] myCookies = req.getCookies();
  this.username = this.getCookieValue(myCookies,cookieName,"not found");
  PrintWriter out = res.getWriter();
  if(this.username != null)
  {  
   //out.println("早上好," + this.username + "!");
   return true;
  }else{
   out.println("登陸失敗!");
   return false;
   }

 }

 public String getUserName()
 {
  return this.username;
 }

 public static String getCookieValue(Cookie[] cookies,String cookieName,String defaultValue)
 {
  for(int i=0;i<cookies.length;i++) {
  Cookie cookie = cookies[i];
  if (cookieName.equals(cookie.getName()))
  return(cookie.getValue());
 }
  return(defaultValue);
 }
}

說明:此bean檢測cookie中的username,若不為空則說明已登錄,反之說明沒有登錄。方法不夠完善,您可以自行擴充。

 


六、在JRun中建立shopping服務器
打開JRun Administrator,新建shopping服務器,這里端口為8101。
將上文所述所有編譯后的class文件連同org包拷至JRun的shopping服務器所在目錄中的classes文件夾下,路徑為:


C:/JRun4/servers/shopping/default-ear/default-war/WEB-INF/classes/

七、建立jsp文件
應用DW,在C:/JRun4/servers/shopping/default-ear/default-war/目錄下新建如下的jsp文件:
index.jsp:


<%@ page contentType="text/html;charset=gb2312" pageEncoding="gb2312" %>
<html>
<head>
<title>Shopping123</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="styles/shoppingstyle.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0">
<jsp:useBean id="checklogin" class="checkLogin" scope="page"/>
<%
 boolean login = checklogin.check(request,response);
%>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
  <tr bgcolor="#990000">
    <td height="80" colspan="5"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td width="120">&nbsp;</td>
          <td class="caption">Shopping123</td>
          <td width="200">&nbsp;</td>
        </tr>
      </table></td>
  </tr>
  <tr>
    <td width="200" align="center" valign="top"><table width="100%" height="20" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td>&nbsp;</td>
        </tr>
      </table>
   <%
    if(!login){
   %>
      <table width="90%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
   <form name="form1" method="post" action="/servlet/login">
        <tr align="center" bgcolor="#CCCCCC">
          <td height="30" colspan="2" class="deepred">賣場入口</td>
        </tr>
        <tr>
          <td width="50%" height="24" align="center" bgcolor="#FFFFFF">會員</td>
          <td align="center" bgcolor="#FFFFFF"><input name="username" type="text" id="username" size="10"></td>
        </tr>
        <tr>
          <td height="24" align="center" bgcolor="#FFFFFF">密碼</td>
          <td align="center" bgcolor="#FFFFFF"><input name="password" type="text" id="password" size="10"></td>
        </tr>
        <tr>
          <td height="24" align="center" bgcolor="#FFFFFF"><a href="reg.jsp" target="_blank" class="red">注冊</a></td>
          <td align="center" bgcolor="#FFFFFF"><input type="submit" name="Submit" value="進入"></td>
        </tr>
  </form>
      </table>
   <%
    }
  else
  {
   out.println("您好," + checklogin.getUserName() + "!");
  }
   %>
   </td>
 <td width="1" valign="top" bgcolor="#CCCCCC"></td>
    <td width="400">&nbsp;</td>
 <td width="1" valign="top" bgcolor="#CCCCCC"></td>
    <td width="200">&nbsp;</td>
  </tr>
  <tr align="center" bgcolor="#990000">
    <td height="60" colspan="5" class="white">copyright&copy; 2003 Shopping123</td>
  </tr>
</table>
</body>
</html>


reg.jsp<%@ page contentType="text/html;charset=gb2312" pageEncoding="gb2312" %>
<html>
<head>
<title>Shopping123</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="styles/shoppingstyle.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
  <tr bgcolor="#990000">
    <td height="80" colspan="5"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td width="120">&nbsp;</td>
          <td class="caption">Shopping123</td>
          <td width="200">&nbsp;</td>
        </tr>
      </table></td>
  </tr>
  <tr>
    <td width="100" align="center" valign="top">&nbsp;</td>
    <td width="1" valign="top"></td>
    <td width="400" align="center" valign="top"><table width="100%" height="20" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td>&nbsp;</td>
        </tr>
      </table>
      <table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
   <form action="regpost.jsp" method="post" name="form1">
        <tr align="center">
          <td height="30" colspan="2" bgcolor="#CCCCCC" class="deepred">會員注冊</td>
        </tr>
        <tr>
          <td width="50%" height="24" align="center" bgcolor="#FFFFFF">會員</td>
          <td align="center" bgcolor="#FFFFFF"><input name="username" type="text" id="username" size="16"></td>
        </tr>
        <tr>
          <td width="50%" height="24" align="center" bgcolor="#FFFFFF">密碼</td>
          <td align="center" bgcolor="#FFFFFF"><input name="password" type="password" id="password" size="16"></td>
        </tr>
        <tr>
          <td width="50%" height="24" align="center" bgcolor="#FFFFFF">驗證密碼</td>
          <td align="center" bgcolor="#FFFFFF"><input name="confirm" type="password" id="confirm" size="16"></td>
        </tr>
        <tr>
          <td width="50%" height="24" align="center" bgcolor="#FFFFFF">E-mail</td>
          <td align="center" bgcolor="#FFFFFF"><input name="email" type="text" id="email" size="16"></td>
        </tr>
        <tr>
          <td width="50%" height="24" align="center" bgcolor="#FFFFFF"><input type="submit" name="Submit" value="重寫"></td>
          <td align="center" bgcolor="#FFFFFF"><input type="submit" name="Submit2" value="注冊"></td>
        </tr>
  </form>
      </table></td>
    <td width="1" valign="top"></td>
    <td width="100">&nbsp;</td>
  </tr>
  <tr align="center" bgcolor="#990000">
    <td height="60" colspan="5" class="white">copyright&copy; 2003 Shopping123</td>
  </tr>
</table>
</body>
</html>
 regpost.jsp:注冊表單提交頁面<%@ page contentType="text/html;charset=gb2312" pageEncoding="gb2312" %>
<%@ page import="reg"%>
<html>
<head>
<title>Shopping123</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="styles/shoppingstyle.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0">
<%
 String username = new String(request.getParameter("username").getBytes("ISO8859_1")).trim();
 String password = new String(request.getParameter("password").getBytes("ISO8859_1")).trim();
 String confirm = new String(request.getParameter("confirm").getBytes("ISO8859_1")).trim();
 String email = new String(request.getParameter("email").getBytes("ISO8859_1")).trim();
%>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
  <tr bgcolor="#990000">
    <td height="80" colspan="5"><table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td width="120">&nbsp;</td>
          <td class="caption">Shopping123</td>
          <td width="200">&nbsp;</td>
        </tr>
      </table></td>
  </tr>
  <tr>
    <td width="100" align="center" valign="top">&nbsp;</td>
    <td width="1" valign="top"></td>
    <td width="400" align="center" valign="top">
<table width="100%" height="20" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td>&nbsp;</td>
        </tr>
      </table>
<jsp:useBean id="regID" class="reg" scope="session"/>
<%
 if(regID.reg(username,password,confirm,email))
 {
  out.print("ok");
  String newID = regID.getID() + ";
%>
      <table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
        <tr align="center">
          <td height="30" colspan="2" bgcolor="#CCCCCC" class="deepred">恭喜您,注冊成功!</td>
        </tr>
        <tr>
          <td width="50%" height="24" align="center" bgcolor="#FFFFFF">編號</td>
          <td align="center" bgcolor="#FFFFFF"><%=newID%></td>
        </tr>
        <tr>
          <td width="50%" height="24" align="center" bgcolor="#FFFFFF">會員</td>
          <td align="center" bgcolor="#FFFFFF"><%=username%></td>
        </tr>
        <tr>
          <td width="50%" height="24" align="center" bgcolor="#FFFFFF">密碼</td>
          <td align="center" bgcolor="#FFFFFF"><%=password%></td>
        </tr>
        <tr>
          <td width="50%" height="24" align="center" bgcolor="#FFFFFF">E-mail</td>
          <td align="center" bgcolor="#FFFFFF"><%=email%></td>
        </tr>
      </table>
<%
  out.print("<br>");
  out.print("<a href=javascript:window.close()>關閉</a>");
 }else{
  out.print("注冊失敗!<br>");
  out.print("該用戶名已有人使用,請使用另外的用戶名!");
  out.print("<a href=javascript:history.go(-1)>返回</a>");
 }
%>
   </td>
    <td width="1" valign="top"></td>
    <td width="100">&nbsp;</td>
  </tr>
  <tr align="center" bgcolor="#990000">
    <td height="60" colspan="5" class="white">copyright&copy; 2003 Shopping123</td>
  </tr>
</table>
</body>
</html>
 至此,我們已經完成了一個用戶注冊、登錄的系統。 因為這是本人自己邊學邊做完成的,所以代碼一定有很多不完善的地方,歡迎大家批評指正。 以上所有代碼均經本人測試通過。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
国产激情自拍_国产9色视频_丁香花在线电影小说观看 _久久久久国产精品嫩草影院
中文字幕在线永久在线视频| 中文字幕视频在线| 精品乱码一区二区三四区视频| av三级在线观看| 伊人永久在线| 九九热视频在线观看| 最近高清中文在线字幕在线观看| 国产精品视频一区麻豆| 69视频在线| 青青国产在线| 国产激情网址| 国产在线一区二区视频| 国产午夜精品一区理论片| 精品国产二区三区| 九九视频精品在线| 精品国产一区二区三区不卡在线 | jizz性欧美| 国产男女无套在线播放| 国产福利在线播放麻豆| 操操操综合网| 91这里只有精品| 99视频免费在线观看| 亚洲wwwwww| 国产高清免费av在线| av亚洲男人天堂| 国产一级片在线| jlzzjlzz欧美大全| 国产www.大片在线| 国产一级黄色| 国产综合视频一区二区三区免费| 91美女主播在线视频| 中文字幕国产视频| 牛牛精品视频在线| 欧美色欧美亚洲另类二区精品| 69视频在线观看| 国产黄网站在线观看| 国产免费永久在线观看| 日本调教视频在线观看| 精品偷拍激情视频在线观看| 久久99精品久久久久久野外| 精灵使的剑舞无删减版在线观看| 最近中文字幕大全中文字幕免费| 九色福利视频| 国产原创av在线| 国产男女无套在线播放| 国产毛片毛片毛片| 黄网址在线播放免费| 国产在线一二三| 国自产拍在线网站网址视频| 久久久久久国产视频| 麻豆av在线| 国产精品一区二区三区四区色| 欧美午夜电影一区二区三区| 免费在线黄色网址| 欧美精品日韩少妇| 国产一区二区在线|播放| 尤物网址在线观看| 国产福利小视频在线| av在线不卡网站| 九九在线观看免费视频| 国产一级片在线| 国产网友自拍电影在线| 国产成人精品男人的天堂538| 97中文字幕| 免费国产视频| 国产精品剧情一区二区三区| 亚洲午夜久久久久中文字幕| 青青草免费观看免费视频在线| 国产麻豆视频网站| 国产三区四区在线观看| 日本福利在线观看| 国产精品久久在线| 交视频在线观看国产| 国产视频一二| 亚洲wwwwww| 国产精品99999| 丁香花高清在线观看完整版| 9999在线视频| 国产女王在线**视频| www.色五月| 国产三级免费观看| 国产在线观看91| 青青草观看免费视频在线| 国产xxx在线| 狠狠狠狠狠狠操| 亚洲综合在线不卡| 精品国产福利一区二区在线| 国产剧情av在线| 九九热在线观看视频| 亚洲欧美精选| 91在线看片| 国产福利免费观看| 五月婷婷在线视频| 黄色网址在线免费播放| 亚洲国产精华液| av男人的天堂网| 亚洲天堂电影在线观看| 精品欧美不卡一区二区在线观看| 国产欧美在线观看视频| 激情六月丁香| 国产在线观看a| 国产女王在线**视频 | 久久亚洲资源| 欧美日韩在线精品成人综合网| 精品国产福利一区二区在线| 国产欧美黑人| 在线天堂中文| 亚洲精品影视在线| 日本免费不卡| 免费观看久久久久| 国产在线播放av| 国产视频资源| 国产白浆在线| 天堂网中文在线| 国产九九在线| 2021av在线| 激情亚洲综合网| 国产黄色在线网站| 亚洲欧美日韩成人网| jizz一区二区三区| 国产一级性片| eeuss影院在线观看第一页| 午夜在线网站| 国产免费视频| 伊人网在线视频| 国产乱在线观看视频| 国产精品视频一区麻豆| 精品街拍一区二区| 久草.com| 99高清免费国产自产拍| 麻豆精品不卡国产免费看| √天堂资源地址在线官网| av高清资源| 国产桃色电影在线播放| 日本在线观看| 国产色a在线| 久久久久久久久亚洲精品| 91三级在线| 中文字幕国产在线| www.蜜桃av| 国产videos| 国产色视频网站| 欧美色第一页| 中文av资源在线| 中文字幕在线视频免费观看| 四虎中文字幕| 日本片在线看| 色吊丝av中文字幕| 在线观看免费高清完整| 国产精品秘入口| 天堂中文字幕在线| 麻豆电影传媒二区| 欧美国产中文| sese一区| 欧美一级久久久久久久久大| 四虎成年永久免费网站| 永久免费av片在线观看全网站| 最新中文字幕av专区| 成人亚洲一区二区三区| 免费观看v片在线观看| 午夜影院免费| 青青草中文字幕| 激情六月丁香| 国产麻豆综合视频在线观看| 毛片在线视频| 国产乱xxⅹxx国语对白| 国产美女极品在线| 午夜视频在线免费 | 久久五月精品中文字幕 | 精品一二三四| 精品卡一卡卡2卡3网站| 精品视频vs精品视频| 中文天堂av| av在线免费播放网站| www.蜜桃av| 成人福利视频导航| 最近免费中文字幕大全免费第三页| 国产免费福利网站| 中文字幕成人乱码在线电影| 国产精品18久久久久久久久久| 99精品老司机免费视频| 啪啪免费视频一区| 国产91大片| 在线免费观看你懂的| 免费视频中文字幕| 国产小视频在线| eeuss影院在线| 最近高清中文在线字幕在线观看| 中文字幕在线影院| www久久日com| 国产精品伦一区二区三区视频| 永久av在线| 国产一二区在线观看| 一本大道五月香蕉| 最近中文av字幕在线中文| 伊人网站在线| 国产白浆在线| 国产美女极品在线| 欧美日韩国产亚洲沙发| 国产精品入口麻豆免费观看|