91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小:
    文件類型: .rar
    金幣: 1
    下載: 0 次
    發布日期: 2022-08-06
  • 語言: Java
  • 標簽: Java??web??光盤源碼??

資源簡介

java web入門經典書中光盤中的源碼

資源截圖

代碼片段和文件信息

package?com.lyq.bean;

import?java.sql.Connection;
import?java.sql.DriverManager;
import?java.sql.PreparedStatement;
import?java.sql.ResultSet;
import?java.sql.SQLException;
import?java.sql.Statement;
import?java.util.ArrayList;
import?java.util.List;

/**
?*?商品數據庫操作
?*
?*/

public?class?BookDao?{
/**
?*?獲取數據庫連接
?*?@return?Connection對象
?*/
public?Connection?getConnection(){
//?數據庫連接
Connection?conn?=?null;
try?{
//?加載數據庫驅動,注冊到驅動管理器
Class.forName(“com.mysql.jdbc.Driver“);
//?數據庫連接字符串
String?url?=?“jdbc:mysql://localhost:3306/db_database10“;
//?數據庫用戶名
String?username?=?“root“;
//?數據庫密碼
String?password?=?“111“;
//?創建Connection連接
conn?=?DriverManager.getConnection(urlusernamepassword);
}?catch?(ClassNotFoundException?e)?{
e.printStackTrace();
}?catch?(SQLException?e)?{
e.printStackTrace();
}
//?返回數據庫連接
return?conn;
}

/**
?*?分頁查詢所有商品信息
?*?@param?page?頁數
?*?@return?List
?*/
public?List?find(int?page){
//?創建List
List?list?=?new?ArrayList();
//?獲取數據庫連接
Connection?conn?=?getConnection();
//?分頁查詢的SQL語句
String?sql?=?“select?*?from?tb_product?order?by?id?desc?limit???“;
try?{
//?獲取PreparedStatement
PreparedStatement?ps?=?conn.prepareStatement(sql);
//?對SQL語句中的第1個參數賦值
ps.setInt(1?(page?-?1)?*?Product.PAGE_SIZE);
//?對SQL語句中的第2個參數賦值
ps.setInt(2?Product.PAGE_SIZE);
//?執行查詢操作
ResultSet?rs?=?ps.executeQuery();
//?光標向后移動,并判斷是否有效
while(rs.next()){
//?實例化Product
Product?p?=?new?Product();
//?對id屬性賦值
p.setId(rs.getInt(“id“));
//?對name屬性賦值
p.setName(rs.getString(“name“));
//?對num屬性賦值
p.setNum(rs.getInt(“num“));
//?對price屬性賦值
p.setPrice(rs.getDouble(“price“));
//?對unit屬性賦值
p.setUnit(rs.getString(“unit“));
//?將Product添加到List集合中
list.add(p);
}
//?關閉ResultSet
rs.close();
//?關閉PreparedStatement
ps.close();
//?關閉Connection
conn.close();
}?catch?(SQLException?e)?{
e.printStackTrace();
}
return?list;
}

/**
?*?查詢總記錄數
?*?@return?總記錄數
?*/
public?int?findCount(){
//?總記錄數
int?count?=?0;
//?獲取數據庫連接
Connection?conn?=?getConnection();
//?查詢總記錄數SQL語句
String?sql?=?“select?count(*)?from?tb_product“;
try?{
//?創建Statement
Statement?stmt?=?conn.createStatement();
//?查詢并獲取ResultSet
ResultSet?rs?=?stmt.executeQuery(sql);
//?光標向后移動,并判斷是否有效
if(rs.next()){
//?對總記錄數賦值
count?=?rs.getInt(1);
}
//?關閉ResultSet
rs.close();
//?關閉Connection
conn.close();
}?catch?(SQLException?e)?{
e.printStackTrace();
}
//?返回總記錄數
return?count;
}
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

????.......???????353??2015-08-13?17:28??第2章\2.1\index.html

????.......???????531??2015-08-13?17:28??第2章\2.10\index.html

????.......??????1101??2015-08-13?17:28??第2章\2.11\index.html

????.......??20643501??2015-08-13?17:28??第2章\2.12\Big.ogv

????.......???????453??2015-08-13?17:28??第2章\2.12\index.html

????.......????857894??2015-08-13?17:28??第2章\2.12\mingrisoft.mp4

????.......???????958??2015-08-13?17:28??第2章\2.13\index.html

????.......???????428??2015-08-13?17:28??第2章\2.14\index.html

????.......???????322??2015-08-13?17:28??第2章\2.15\index.html

????.......???????364??2015-08-13?17:28??第2章\2.16\index.html

????.......???????360??2015-08-13?17:28??第2章\2.17\index.html

????.......???????526??2015-08-13?17:28??第2章\2.18\index.html

????.......???????697??2015-08-13?17:28??第2章\2.19\index.html

????.......???????384??2015-08-13?17:28??第2章\2.2\index.html

????.......???????265??2015-08-13?17:28??第2章\2.20\index.html

????.......???????336??2015-08-13?17:28??第2章\2.20\newWindow.html

????.......???????422??2015-08-13?17:28??第2章\2.3\index.html

????.......???????424??2015-08-13?17:28??第2章\2.4\index.html

????.......???????259??2015-08-13?17:28??第2章\2.5\header示例.html

????.......?????19156??2015-08-13?17:28??第2章\2.5\mrlogo.jpg

????.......??????4096??2015-08-13?17:28??第2章\2.5\Thumbs.db

????.......???????367??2015-08-13?17:28??第2章\2.6\index.html

????.......???????381??2015-08-13?17:28??第2章\2.7\index.html

????.......???????687??2015-08-13?17:28??第2章\2.8\index.html

????.......???????381??2015-08-13?17:28??第2章\2.9\index.html

????.......?????19917??2015-08-13?17:28??第2章\sj1\bike.jpg

????.......???????380??2015-08-13?17:28??第2章\sj1\index.html

????.......??????5120??2015-08-13?17:28??第2章\sj1\Thumbs.db

????.......??????2957??2015-08-13?17:28??第2章\sj2\index.html

????.......?????51372??2015-08-13?17:28??第2章\sj3\images\01.gif

............此處省略2654個文件信息

評論

共有 條評論