package myPk;
import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.Array;
import java.sql.Blob;
import java.sql.Clob;
import java.sql.Date;
import java.sql.Ref;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.Statement;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.Map;
public class PageableResultSet2 implements Pageable {
protected java.sql.ResultSet rs=null;
protected int rowsCount;
protected int pageSize;
protected int curPage;
protected String command = "";
public int getCurPage() {
// TODO 自动生成方法存根
return curPage;
}
public int getPageCount() {
// TODO 自动生成方法存根
if(rowsCount==0) return 0;
if(pageSize==0) return 1;
//calculate PageCount
double tmpD=(double)rowsCount/pageSize;
int tmpI=(int)tmpD;
if(tmpD>tmpI) tmpI++;
return tmpI;
}
public int getPageRowsCount() {
// TODO 自动生成方法存根
if(pageSize==0) return rowsCount;
if(getRowsCount()==0) return 0;
if(curPage!=getPageCount()) return pageSize;
return rowsCount-(getPageCount()-1)*pageSize;
}
public int getPageSize() {
// TODO 自动生成方法存根
return pageSize;
}
public int getRowsCount() {
// TODO 自动生成方法存根
return rowsCount;
}
public void gotoPage(int page) {
// TODO 自动生成方法存根
if (rs == null)
return;
if (page < 1)
page = 1;
if (page > getPageCount())
page = getPageCount();
int row = (page - 1) * pageSize + 1;
try {
rs.absolute(row);
curPage = page;
}
catch (java.sql.SQLException e) {
}
}
public void pageFirst() throws SQLException {
// TODO 自动生成方法存根
int row=(curPage-1)*pageSize+1;
rs.absolute(row);
}
public void pageLast() throws SQLException {
// TODO 自动生成方法存根
int row=(curPage-1)*pageSize+getPageRowsCount();
rs.absolute(row);
}
public void setPageSize(int pageSize) {
// TODO 自动生成方法存根
if(pageSize>=0){
this.pageSize=pageSize;
curPage=1;
}
}
public boolean absolute(int row) throws SQLException {
// TODO 自动生成方法存根
return false;
}
public void afterLast() throws SQLException {
// TODO 自动生成方法存根
}
public void beforeFirst() throws SQLException {
// TODO 自动生成方法存根
}
public void cancelRowUpdates() throws SQLException {
// TODO 自动生成方法存根
}
public void clearWarnings() throws SQLException {
// TODO 自动生成方法存根
}
public void close() throws SQLException {
// TODO 自动生成方法存根
}
public void deleteRow() throws SQLException {
// TODO 自动生成方法存根
}
public int findColumn(String columnName) throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public boolean first() throws SQLException {
// TODO 自动生成方法存根
return false;
}
public Array getArray(int i) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Array getArray(String colName) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public InputStream getAsciiStream(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public InputStream getAsciiStream(String columnName) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public BigDecimal getBigDecimal(String columnName) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public BigDecimal getBigDecimal(int columnIndex, int scale)
throws SQLException {
// TODO 自动生成方法存根
return null;
}
public BigDecimal getBigDecimal(String columnName, int scale)
throws SQLException {
// TODO 自动生成方法存根
return null;
}
public InputStream getBinaryStream(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public InputStream getBinaryStream(String columnName) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Blob getBlob(int i) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Blob getBlob(String colName) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public boolean getBoolean(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return false;
}
public boolean getBoolean(String columnName) throws SQLException {
// TODO 自动生成方法存根
return false;
}
public byte getByte(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public byte getByte(String columnName) throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public byte[] getBytes(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public byte[] getBytes(String columnName) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Reader getCharacterStream(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Reader getCharacterStream(String columnName) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Clob getClob(int i) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Clob getClob(String colName) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public int getConcurrency() throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public String getCursorName() throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Date getDate(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Date getDate(String columnName) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Date getDate(int columnIndex, Calendar cal) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Date getDate(String columnName, Calendar cal) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public double getDouble(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public double getDouble(String columnName) throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public int getFetchDirection() throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public int getFetchSize() throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public float getFloat(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public float getFloat(String columnName) throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public int getInt(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public int getInt(String columnName) throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public long getLong(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public long getLong(String columnName) throws SQLException {
// TODO 自动生成方法存根
return 0;
}
public ResultSetMetaData getMetaData() throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Object getObject(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Object getObject(String columnName) throws SQLException {
// TODO 自动生成方法存根
return null;
}
public Object getObject(int arg0, Map<String, Class<?>> arg1)
throws SQLException {
// TODO 自动生成方法存根
return null;
}
没有合适的资源?快使用搜索试试~ 我知道了~
课程设计-基于Java web的电子商务网上书店系统(源码+数据库+报告).zip
共110个文件
gif:42个
jsp:27个
jpg:18个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 4 下载量 172 浏览量
2022-04-15
16:59:14
上传
评论 9
收藏 1.74MB ZIP 举报
温馨提示
参考设计要求,及可行性的分析,我们确定了如下的需求: 1.数据库设计科学合理。 2.网站主页面简洁美观,可以天蓝色为主色调。 3.网站主页显示各个分类的及总的畅销表、新书榜、推荐榜,显示论坛新帖。 4.单本图书的详细资料页面显示同类图书的畅销榜,同一作者的畅销榜,购买了同一本书的读者此外还购买的图书。 5.可按作者,或者书名,或者出版社搜索图书。 6.用户注册登录后可以使用购物车、订单等功能,可以修改密码、个人资料,还可以在论坛发表新帖、回复。 7.具备友好的用户界面,提供适当的操作提示,如用户登录时的密码错误等。 8.网站管理员可通过后台管理界面,修改密码,添加、删除用户,添加、删除、修改图书的详细资料。
资源推荐
资源详情
资源评论
收起资源包目录
课程设计-基于Java web的电子商务网上书店系统(源码+数据库+报告).zip (110个子文件)
PageableResultSet2.class 18KB
Md5.class 8KB
FileUploadBean.class 4KB
Conn.class 2KB
Pageable.class 403B
.classpath 473B
org.eclipse.wst.common.component 404B
blue.css 5KB
网上书店.doc 1.32MB
目录.doc 28KB
titleBg.gif 4KB
logo.gif 3KB
go-2.gif 2KB
newTitle.GIF 2KB
reply.GIF 2KB
search-button.gif 1KB
go.gif 1KB
biaoshi.gif 1KB
EDIT.GIF 1KB
BB_EMAIL.GIF 1KB
BB_QUOTE.GIF 1KB
toFirst-2.gif 1020B
toLast-2.gif 1014B
bg.gif 820B
toLast.gif 714B
toFirst.gif 709B
toLeftStep-2.gif 625B
toRightStep-2.gif 624B
toLeftStep.gif 588B
toRightStep.gif 588B
SWF.GIF 404B
shoppingBag.gif 353B
BB_URL.GIF 192B
brkspace.gif 187B
search-mode.gif 145B
inserthorizontalrule.gif 140B
BB_IMAGE.GIF 134B
REDO.GIF 107B
UNDO.GIF 106B
order.gif 88B
bb_underline.gif 86B
bb_italicize.gif 79B
BB_BOLD.GIF 76B
vLine.gif 74B
search-right.gif 73B
search-left.gif 72B
justifycenter.gif 70B
justifyright.gif 70B
justifyleft.gif 70B
justifyfull.gif 70B
broken-line.gif 63B
search-bg.gif 54B
PageableResultSet2.java 18KB
Md5.java 15KB
FileUploadBean.java 5KB
Conn.java 1KB
Pageable.java 695B
book.jpg 102KB
user.jpg 89KB
campaign.jpg 80KB
hotSearch.jpg 79KB
topic.jpg 77KB
orderTotal.jpg 77KB
follow.jpg 77KB
orderItem.jpg 75KB
topic-follow.jpg 73KB
19.jpg 58KB
35.jpg 19KB
34.jpg 17KB
21.jpg 15KB
1.jpg 6KB
25.jpg 6KB
33.jpg 6KB
23.jpg 4KB
bgLine.jpg 392B
forum-topic.jsp 27KB
forum-add.jsp 13KB
book-information.jsp 11KB
admin-user.jsp 9KB
deal-order.jsp 8KB
admin-book.jsp 8KB
index-main.jsp 8KB
forum.jsp 8KB
admin-book-add.jsp 7KB
search.jsp 7KB
save-admin-book.jsp 6KB
head.jsp 6KB
book-list.jsp 5KB
tip.jsp 4KB
show-order.jsp 4KB
user.jsp 4KB
show-check.jsp 3KB
upload-file.jsp 3KB
save-user.jsp 3KB
save-topic.jsp 3KB
bottom.jsp 2KB
userLogin.jsp 2KB
save-admin-user.jsp 2KB
admin-pwd.jsp 2KB
save-book-photo.jsp 819B
共 110 条
- 1
- 2
等天晴i
- 粉丝: 5984
- 资源: 10万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- (源代码+论文+PPT模板+数据库)宠乐康小精灵医疗【java毕业设计】.zip
- springboot019高校心理教育辅导设计与实现.zip
- springboot020基于Java的免税商品优选购物商城设计与实现代码.zip
- springboot018母婴商城.zip
- (源代码+论文+PPT模板+数据库)宠缘医疗管家【java毕业设计】.zip
- (源代码+论文+PPT模板+数据库)宠缘医疗快乐小博士【java毕业设计】.zip
- (源代码+论文+PPT模板+数据库)宠缘医疗先锋网【java毕业设计】.zip
- (源代码+论文+PPT模板+数据库)宠缘智慧医疗站【java毕业设计】.zip
- (源代码+论文+PPT模板+数据库)健康宠诊所系统【java毕业设计】.zip
- (源代码+论文+PPT模板+数据库)康复宠物医院【java毕业设计】.zip
- springboot023学生宿舍管理系统的设计与开发.zip
- (源代码+论文+PPT模板+数据库)萌宠康复乐园【java毕业设计】.zip
- (源代码+论文+PPT模板+数据库)萌宠康复小精灵站【java毕业设计】.zip
- (源代码+论文+PPT模板+数据库)萌宠乐园医疗诊所【java毕业设计】.zip
- springboot021校园周边美食探索及分享平台的设计与实现.zip
- springboot022蜗牛兼职网的设计与实现.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
- 3
前往页