亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? dbconnmanager.java~194~

?? Java完全自學手冊 全部隨書代碼 作者:馬軍 王灝
?? JAVA~194~
?? 第 1 頁 / 共 3 頁
字號:
     if (statement != null)try {
       statement.close();
     }
     catch (SQLException ignore) {}
     if (con != null)try {
       con.close();
     }
     catch (SQLException ignore) {}
     finally {
       releaseConnection("Access", con);
     }
   }
   return result;
 }

//學生成績統計
 public Vector getSum(String aclass, String aschool, String grade, float first, float last) {
   Connection con = null;
   PreparedStatement ps = null;
   ResultSet rs = null;
   Vector resultdate = new Vector();
   String sqlquery = null;
   try {
     //全校成績統計
     if (!aschool.equals("")) {
       if (grade.equals("chinese"))
         sqlquery =
             "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,chinese,stugrade_A2241.class " +
             "FROM stugrade_A2241,stuinf_A2241 " +
             "where chinese between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id " +
             "UNION SELECT stugrade_A2242.stu_id,stuinf_A2242.name,chinese,stuinf_A2242.class " +
             "FROM stugrade_A2242,stuinf_A2242 " +
             "where chinese between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id " +
             "UNION SELECT stugrade_A2243.stu_id,stuinf_A2243.name,chinese,stuinf_A2243.class " +
             "FROM stugrade_A2243,stuinf_A2243 where chinese " +
             "between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
       else if (grade.equals("math"))
         sqlquery =
             "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,math,stugrade_A2241.class " +
             "FROM stugrade_A2241,stuinf_A2241 " +
             "where math between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id " +
             "UNION SELECT stugrade_A2242.stu_id,stuinf_A2242.name,math,stuinf_A2242.class " +
             "FROM stugrade_A2242,stuinf_A2242 " +
             "where math between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id " +
             "UNION SELECT stugrade_A2243.stu_id,stuinf_A2243.name,math,stuinf_A2243.class " +
             "FROM stugrade_A2243,stuinf_A2243 where math " +
             "between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
       else if (grade.equals("english"))
         sqlquery =
             "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,english,stugrade_A2241.class " +
             "FROM stugrade_A2241,stuinf_A2241 " +
             "where english between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id " +
             "UNION SELECT stugrade_A2242.stu_id,stuinf_A2242.name,english,stuinf_A2242.class " +
             "FROM stugrade_A2242,stuinf_A2242 " +
             "where english between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id " +
             "UNION SELECT stugrade_A2243.stu_id,stuinf_A2243.name,english,stuinf_A2243.class " +
             "FROM stugrade_A2243,stuinf_A2243 where english " +
             "between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
       else if (grade.equals("composite"))
         sqlquery =
             "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,composite,stugrade_A2241.class " +
             "FROM stugrade_A2241,stuinf_A2241 " +
             "where composite between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id " +
             "UNION SELECT stugrade_A2242.stu_id,stuinf_A2242.name,composite,stuinf_A2242.class " +
             "FROM stugrade_A2242,stuinf_A2242 " +
             "where composite between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id " +
             "UNION SELECT stugrade_A2243.stu_id,stuinf_A2243.name,composite,stuinf_A2243.class " +
             "FROM stugrade_A2243,stuinf_A2243 where composite " +
             "between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
       else {
         sqlquery =
             "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,total,stugrade_A2241.class " +
             "FROM stugrade_A2241,stuinf_A2241 " +
             "where total between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id " +
             "UNION SELECT stugrade_A2242.stu_id,stuinf_A2242.name,total,stuinf_A2242.class " +
             "FROM stugrade_A2242,stuinf_A2242 " +
             "where total between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id " +
             "UNION SELECT stugrade_A2243.stu_id,stuinf_A2243.name,total,stuinf_A2243.class " +
             "FROM stugrade_A2243,stuinf_A2243 where total " +
             "between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
       }
     }
     if (!aclass.equals("")) { //班級成績統計
       if (aclass.equals("A2241")) {
         if (grade.equals("chinese"))
           sqlquery =
               "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,chinese,stugrade_A2241.class " +
               "FROM stugrade_A2241,stuinf_A2241 " +
               "where chinese between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id";
         else if (grade.equals("math"))
           sqlquery =
               "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,math,stugrade_A2241.class " +
               "FROM stugrade_A2241,stuinf_A2241 " +
               "where math between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id";
         else if (grade.equals("english"))
           sqlquery =
               "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,english,stugrade_A2241.class " +
               "FROM stugrade_A2241,stuinf_A2241 " +
               "where english between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id";
         else if (grade.equals("composite"))
           sqlquery =
               "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,composite,stugrade_A2241.class " +
               "FROM stugrade_A2241,stuinf_A2241 " +
               "where composite between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id";
         else {
           sqlquery =
               "SELECT stugrade_A2241.stu_id,stuinf_A2241.name,total,stugrade_A2241.class " +
               "FROM stugrade_A2241,stuinf_A2241 " +
               "where total between ? and ? and stuinf_A2241.stu_id = stugrade_A2241.stu_id";
         }
       }
       else if (aclass.equals("A2242")) {
         if (grade.equals("chinese"))
           sqlquery =
               "SELECT stugrade_A2242.stu_id,stuinf_A2242.name,chinese,stugrade_A2242.class " +
               "FROM stugrade_A2242,stuinf_A2242 " +
               "where chinese between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id";
         else if (grade.equals("math"))
           sqlquery =
               "SELECT stugrade_A2242.stu_id,stuinf_A2242.name,math,stugrade_A2242.class " +
               "FROM stugrade_A2242,stuinf_A2242 " +
               "where math between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id";
         else if (grade.equals("english"))
           sqlquery =
               "SELECT stugrade_A2242.stu_id,stuinf_A2242.name,english,stugrade_A2242.class " +
               "FROM stugrade_A2242,stuinf_A2242 " +
               "where english between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id";
         else if (grade.equals("composite"))
           sqlquery =
               "SELECT stugrade_A2242.stu_id,stuinf_A2242.name,composite,stugrade_A2242.class " +
               "FROM stugrade_A2242,stuinf_A2242 "+
               "where composite between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id";
         else {
           sqlquery =
               "SELECT stugrade_A2242.stu_id,stuinf_A2242.name,total,stugrade_A2242.class " +
               "FROM stugrade_A2242,stuinf_A2242 " +
               "where total between ? and ? and stuinf_A2242.stu_id = stugrade_A2242.stu_id";
         }
       }
       else if (aclass.equals("A2243")) {
         if (grade.equals("chinese"))
           sqlquery =
               "SELECT stugrade_A2243.stu_id,stuinf_A2243.name,chinese,stugrade_A2243.class " +
               "FROM stugrade_A2243,stuinf_A2243 " +
               "where chinese between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
         else if (grade.equals("math"))
           sqlquery =
               "SELECT stugrade_A2243.stu_id,stuinf_A2243.name,math,stugrade_A2243.class " +
               "FROM stugrade_A2243,stuinf_A2243 " +
               "where math between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
         else if (grade.equals("english"))
           sqlquery =
               "SELECT stugrade_A2243.stu_id,stuinf_A2243.name,english,stugrade_A2243.class " +
               "FROM stugrade_A2243,stuinf_A2243 " +
               "where english between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
         else if (grade.equals("composite"))
           sqlquery =
               "SELECT stugrade_A2243.stu_id,stuinf_A2243.name,composite,stugrade_A2243.class " +
               "FROM stugrade_A2243,stuinf_A2243 " +
               "where composite between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
         else {
           sqlquery =
               "SELECT stugrade_A2243.stu_id,stuinf_A2243.name,total,stugrade_A2243.class " +
               "FROM stugrade_A2243,stuinf_A2243 " +
               "where total between ? and ? and stuinf_A2243.stu_id = stugrade_A2243.stu_id";
         }
       }
     }
     con = getConnection("Access");
     ps = con.prepareStatement(sqlquery);
     if (aschool.equals("全校"))
     {
       ps.setFloat(1, first);
       ps.setFloat(2, last);
       ps.setFloat(3, first);
       ps.setFloat(4, last);
       ps.setFloat(5, first);
       ps.setFloat(6, last);
     }else{
       ps.setFloat(1, first);
       ps.setFloat(2, last);
     }
     rs = ps.executeQuery();
     while (rs.next()) {
       resultdate.add(rs.getString("stu_id"));
       resultdate.add(rs.getString("name"));
       resultdate.add(rs.getString(grade));
       resultdate.add(rs.getString("class"));
     }
   }
   catch (SQLException e) {
     e.printStackTrace();
   }
   finally {
     if (rs != null)try {
       rs.close();
     }
     catch (SQLException ignore) {}
     if (ps != null)try {
       ps.close();
     }
     catch (SQLException ignore) {}
     if (con != null)try {
       con.close();
     }
     catch (SQLException ignore) {}
     finally {
       releaseConnection("Access", con);
     }
   }
   return resultdate;
 }

//學生統計
 public Vector getpeopleSum(String aclass, String aschool, String sumstr,String aethnic, String range1, String range2) {
   Connection con = null;
   PreparedStatement ps = null;
   ResultSet rs = null;
   Vector resultdate = new Vector();
   String sqlquery = null;
   try {
     //全校學生統計
     if (aschool.equals("全校")){
       if (sumstr.equals("男"))
         sqlquery =
             "SELECT stu_id,name,sex,class FROM stuinf_A2241 " +
             "where sex = '男' " +
             "UNION SELECT stu_id,name,sex,class FROM stuinf_A2242 "+
             "where sex = '男' " +
             "UNION SELECT stu_id,name,sex,class FROM stuinf_A2243 "+
             "where sex = '男'";
       else if (sumstr.equals("女"))
         sqlquery =
             "SELECT stu_id,name,sex,class FROM stuinf_A2241 " +
             "where sex = '女' " +
             "UNION SELECT stu_id,name,sex,class FROM stuinf_A2242 "+
             "where sex = '女' " +
             "UNION SELECT stu_id,name,sex,class FROM stuinf_A2243 "+
             "where sex = '女'";
       else if (sumstr.equals("民族"))
         sqlquery =
             "SELECT stu_id,name,ethnic,class FROM stuinf_A2241 " +
             "where ethnic LIKE '"+aethnic+"' "+
             " UNION SELECT stu_id,name,ethnic,class FROM stuinf_A2242 "+
             "where ethnic LIKE '"+aethnic+"' " +
             "UNION SELECT stu_id,name,ethnic,class FROM stuinf_A2243 "+
             "where ethnic LIKE '"+aethnic+"'";
       else if (sumstr.equals("出生日期"))
         sqlquery =
             "SELECT stu_id,name,birthday,class FROM stuinf_A2241 " +
             "where birthday between "+range1+" and "+range2+
             " order by birthday ASC "+
             " UNION SELECT stu_id,name,birthday,class FROM stuinf_A2242 "+
             "where birthday between "+range1+" and "+range2+
             " order by birthday ASC "+
             " UNION SELECT stu_id,name,birthday,class FROM stuinf_A2243 "+
             "where birthday between "+range1+ " and "+range2+" order by birthday ASC";
     }
     if (!aclass.equals("")) { //班級成績統計
       if (aclass.equals("A2241")) {
         if (sumstr.equals("男"))
           sqlquery =
               "SELECT stu_id,name,sex,class FROM stuinf_A2241 " +
               "where sex = '男' ";
         else if (sumstr.equals("女"))
           sqlquery =
               "SELECT stu_id,name,sex,class FROM stuinf_A2241 " +
               "where sex = '女' ";
         else if (sumstr.equals("民族"))
           sqlquery =
               "SELECT stu_id,name,ethnic,class FROM stuinf_A2241 " +
               "where ethnic LIKE '"+aethnic+"'";
         else if (sumstr.equals("出生日期"))
           sqlquery =
               "SELECT stu_id,name,birthday,class FROM stuinf_A2241 " +
               "where birthday between " +range1+ " and "+range2+" order by birthday ASC";
       }
       else if (aclass.equals("A2242")) {
         if (sumstr.equals("男"))
           sqlquery =
               "SELECT stu_id,name,sex,class FROM stuinf_A2242 " +
               "where sex = '男' ";
         else if (sumstr.equals("女"))
           sqlquery =
               "SELECT stu_id,name,sex,class FROM stuinf_A2242 " +
               "where sex = '女' ";
         else if (sumstr.equals("民族"))
           sqlquery =
               "SELECT stu_id,name,ethnic,class FROM stuinf_A2242 " +
               "where ethnic LIKE '"+aethnic+"'";
         else if (sumstr.equals("出生日期"))
           sqlquery =
               "SELECT stu_id,name,birthday,class FROM stuinf_A2242 " +
               "where birthday between "+range1+" and "+range2+
               " order by birthday ASC";
       }
       else if (aclass.equals("A2243")) {
         if (sumstr.equals("男"))
           sqlquery =
               "SELECT stu_id,name,sex,class FROM stuinf_A2242 " +
               "where sex = '男' ";
         else if (sumstr.equals("女"))
           sqlquery =
               "SELECT stu_id,name,sex,class FROM stuinf_A2242 " +
               "where sex = '女' ";
         else if (sumstr.equals("民族"))
           sqlquery =
               "SELECT stu_id,name,ethnic,class FROM stuinf_A2242 " +
               "where ethnic LIKE '"+aethnic+"'";
         else if (sumstr.equals("出生日期"))
           sqlquery =
               "SELECT stu_id,name,birthday,class FROM stuinf_A2242 " +
               "where birthday between "+range1+" and "+range2+
               " order by birthday ASC";
       }
     }
     con = getConnection("Access");
     ps = con.prepareStatement(sqlquery);
     rs = ps.executeQuery();
     while (rs.next()) {
       resultdate.add(rs.getString("stu_id"));
       resultdate.add(rs.getString("name"));
       resultdate.addElement(rs.getString(3));
       resultdate.add(rs.getString("class"));
     }
   }
   catch (SQLException e) {
     e.printStackTrace();
   }
   finally {
     if (rs != null)try {
       rs.close();
     }
     catch (SQLException ignore) {}
     if (ps != null)try {
       ps.close();
     }
     catch (SQLException ignore) {}
     if (con != null)try {
       con.close();
     }
     catch (SQLException ignore) {}
     finally {
       releaseConnection("Access", con);
     }
   }
   return resultdate;
 }

//檢驗輸入的班級號是否合法
 public boolean checkClass(String aclass)
 {
   boolean checkflag =  true;
   if(!aclass.equals("A2241")&&!aclass.equals("A2242")&&!aclass.equals("A2243"))
     checkflag = false;
   else checkflag = true;
   return checkflag;
 }

 //檢驗輸入的學號是否合法
 public boolean checkStuid(String userid) {
   boolean checkflag = true;
   Pattern pattern;
   pattern = Pattern.compile("[0-9]");
   for (int i = 0; i < userid.length(); i++) {
     String str = userid.substring(i, i + 1);
     Matcher matcher = pattern.matcher(str);
     if (!matcher.matches()) {
       checkflag = false;
       break;
     }
     else checkflag = true;
   }
 return checkflag;
}

  /*關閉所有連接*/
  public synchronized void closeConns() {
    Enumeration allPools = connPools.elements();
    while (allPools.hasMoreElements()) {
      DBConnPool pool = (DBConnPool) allPools.nextElement();
      pool.closeConn();
    }
  }

  /*創建連接池*/
  private void createPools() {
    for (int i = 0; i < poolnames.size(); i++) {
      String poolname = poolnames.elementAt(i).toString();
      String drivername = drivernames.elementAt(i).toString();
      String dbid = dbids.elementAt(i).toString();
      String username = usernames.elementAt(i).toString();
      String passwd = passwds.elementAt(i).toString();
      int maxconn = 0;
      try {
        maxconn = Integer.parseInt(maxconns.elementAt(i).toString());
      }
      catch (NumberFormatException e) {
        e.printStackTrace();
      }
      DBConnPool pool = new DBConnPool(poolname, drivername, dbid, username,
                                       passwd, maxconn);
      connPools.put(poolname, pool);
    }
  }
}


?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区理论电影在线观看| 午夜精品久久久久久| 一区二区三区免费| 国产一区二区三区黄视频 | 欧美影院午夜播放| 日韩欧美高清dvd碟片| 一区二区三区日韩欧美精品| 国产高清亚洲一区| 精品国产亚洲在线| 亚欧色一区w666天堂| 99免费精品在线| 久久久久97国产精华液好用吗| 亚洲超丰满肉感bbw| 91婷婷韩国欧美一区二区| 国产丝袜在线精品| 国产一区在线视频| 日韩欧美国产一区在线观看| 亚洲福利一二三区| 欧美视频一区二区三区四区| 国产精品国产馆在线真实露脸| 激情偷乱视频一区二区三区| 欧美videossexotv100| 午夜在线成人av| 欧美日韩另类一区| 亚洲国产成人av网| 欧美三级资源在线| 亚洲一区二区在线免费观看视频| av男人天堂一区| 亚洲免费伊人电影| 91久久线看在观草草青青| 亚洲人成网站色在线观看| 成人国产精品免费网站| 国产精品久久久一本精品| 国产激情视频一区二区在线观看| 欧美精品一区二| 国产高清久久久| 国产欧美精品区一区二区三区| 国产一区二区日韩精品| 国产精品午夜电影| 色婷婷综合久久久中文字幕| 一级女性全黄久久生活片免费| 色又黄又爽网站www久久| 一区二区三区欧美亚洲| 精品视频免费看| 免费观看日韩av| 国产午夜精品久久久久久免费视| 成人黄色片在线观看| 1024成人网| 欧美在线播放高清精品| 首页欧美精品中文字幕| 欧美精品一区在线观看| 国产成人av自拍| 亚洲精品国产a| 91精品啪在线观看国产60岁| 国产乱码精品一区二区三区五月婷| 久久精品一区二区三区不卡| av不卡在线观看| 一区二区三区四区乱视频| 欧美日韩国产一级二级| 国内一区二区在线| 国产欧美日韩激情| 欧美日韩一区二区三区视频| 激情文学综合丁香| 亚洲一区二区中文在线| 国产午夜一区二区三区| 欧美在线免费观看亚洲| 国产一区 二区| 亚洲精品国产高清久久伦理二区| 日韩天堂在线观看| 2022国产精品视频| 亚洲午夜激情av| 久久久九九九九| 精品视频一区二区不卡| 岛国av在线一区| 亚洲成人av中文| 国产精品久久久爽爽爽麻豆色哟哟| 欧美在线观看视频在线| 丁香桃色午夜亚洲一区二区三区| 亚洲四区在线观看| 久久免费午夜影院| 日韩一区二区三| 在线观看日韩精品| 91在线精品秘密一区二区| 精品在线观看免费| 亚洲国产精品欧美一二99| 国产日韩欧美不卡| 久久久另类综合| 日韩欧美一卡二卡| 欧美日韩免费电影| 色婷婷一区二区| 国产成人综合自拍| 国内成人免费视频| 奇米色一区二区| 亚洲一二三四区| 亚洲精品乱码久久久久久黑人 | 国产亚洲一区字幕| 欧美日韩在线播放三区四区| av激情亚洲男人天堂| 国产一区二区三区观看| 卡一卡二国产精品| 蜜臀a∨国产成人精品| 午夜精品久久久久久久99樱桃| 18成人在线视频| 一区视频在线播放| 中文字幕国产一区二区| 久久久影视传媒| 久久久综合视频| 久久久国际精品| 久久五月婷婷丁香社区| 精品国产乱码久久久久久夜甘婷婷 | 91精品午夜视频| 欧美三级电影一区| 欧美精品99久久久**| 欧美精品日韩一区| 91精品麻豆日日躁夜夜躁| 欧美人动与zoxxxx乱| 欧美日本一区二区| 91精品国产麻豆国产自产在线 | 亚洲视频一二区| 国产精品精品国产色婷婷| 国产日韩欧美一区二区三区乱码 | 日韩精品在线网站| 日韩精品一区二区三区四区 | 欧美日韩国产小视频在线观看| 91国偷自产一区二区三区成为亚洲经典| 暴力调教一区二区三区| a美女胸又www黄视频久久| 91美女片黄在线观看91美女| heyzo一本久久综合| 色婷婷综合五月| 制服丝袜亚洲色图| 欧美大片拔萝卜| 中文无字幕一区二区三区| 一区免费观看视频| 午夜电影网亚洲视频| 免播放器亚洲一区| 国产大陆精品国产| 日本精品一区二区三区高清| 91久久国产综合久久| 日韩视频在线永久播放| 中文字幕成人在线观看| 亚洲一区日韩精品中文字幕| 日本特黄久久久高潮| 风间由美一区二区av101 | 亚洲国产精品精华液网站| 免费的国产精品| 99久久精品免费看| 日韩片之四级片| 中文字幕亚洲在| 老司机精品视频一区二区三区| 成人午夜在线播放| 欧美日韩精品一区视频| 久久久久久免费网| 亚欧色一区w666天堂| 国产99久久久国产精品| 在线播放日韩导航| 国产精品免费视频网站| 日韩电影在线观看一区| 成人99免费视频| 日韩午夜激情av| 亚洲美女视频在线观看| 久久99精品久久久| 欧美在线高清视频| 国产精品久久久久7777按摩| 蜜臀av性久久久久蜜臀aⅴ| 一本色道久久综合亚洲91| 精品播放一区二区| 亚洲风情在线资源站| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 日韩精品亚洲一区| 91麻豆福利精品推荐| 精品国精品国产| 性久久久久久久| 91麻豆精品在线观看| 久久久天堂av| 免费av成人在线| 91麻豆精品国产91久久久使用方法 | 99re成人在线| 国产三级精品视频| 激情综合色播五月| 777久久久精品| 亚洲国产人成综合网站| 一本色道**综合亚洲精品蜜桃冫 | 亚洲成人av电影| 91女神在线视频| 中文字幕一区二区三区乱码在线 | 成人精品在线视频观看| 精品第一国产综合精品aⅴ| 日韩精品色哟哟| 欧美一二三区在线| 秋霞电影网一区二区| 日韩午夜在线播放| 久久电影国产免费久久电影| 日韩亚洲欧美一区| 久久66热re国产| 亚洲精品一区二区三区影院| 国内外成人在线视频| 国产亚洲欧美中文| 国产91丝袜在线观看| 中文字幕中文字幕在线一区|