在jsp页面上怎样实现多条件查询

 我来答
珥月儿
2017-05-21 · 超过12用户采纳过TA的回答
知道答主
回答量:21
采纳率:0%
帮助的人:9.9万
展开全部
public List<Book> findBookCondition(QueryBookCondition condition) {

List<Book> books = new ArrayList<Book>();

StringBuilder sql = new StringBuilder(
"select fid,fname,fprice,fdesc,fimg,fauthor,fnumber " + "from t_books where 1=1 ");

if (condition.getBookName() != null) {
sql.append(" and fname like '%");
sql.append(condition.getBookName());
sql.append("%'");
}

if (condition.getAuthor() != null) {
sql.append(" and fauthor like '%");
sql.append(condition.getAuthor());
sql.append("%'");
}

if (condition.getDesc() != null) {
sql.append(" and fdesc like '%");
sql.append(condition.getDesc());
sql.append("%'");
}

if (condition.getMaxPrice() > 0) {
sql.append(" and fprice <");
sql.append(condition.getMaxPrice());
}

if (condition.getMinPrice() > 0) {
sql.append(" and fprice >");
sql.append(condition.getMinPrice());
}

System.out.println(sql.toString());

conn = super.getConn();
Book book = null;

try {
smt = conn.createStatement();
rs = smt.executeQuery(sql.toString());
while (rs.next()) {
book = new Book();
book.setId(rs.getInt(1));
book.setName(rs.getString(2));
book.setPrice(rs.getDouble(3));
book.setDesc(rs.getString(4));
book.setImg(rs.getString(5));
book.setAuthor(rs.getString(6));
book.setNumber(rs.getInt(7));
books.add(book);
}

} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

System.out.println(books);
return books;
}
给你参考下,查书的条件
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式