?? adminbookspageaction.java
字號:
/*<%--////////////////////////////////////////////////////GTON原創作品-Struts圖書館管理系統//////////////////////////////////////////////////////////////
////////////所用技術:jsp2.0+servlet2.4+jstl1.1+Struts1.2+sqlserver2000+tomcat5.5/////////////////////////////////////
/////////////////////////////////////////////////////專業制作網站 專業制作畢業設計////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////QQ:27612285//////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////Mail:punkwang@126.com////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////WEB:www.98202.com www.630cn.com//////////////////////////////////////////////////////
////////////////////////////////////////////////////qq群:20665503////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////求高薪工作一個有意者聯系本人/////////////////////////////////////////////////////////
////////////////////////////////////////////////////Phone:010-81110277(王先生)///////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////--%>
<%--接 畢業設計業務 網站業務 商業網站 個人網站 商城系統 企業主頁 JSP ASP.net PHP !!!
業務種類
網站業務: 商業網站 個人網站 商城系統 企業主頁 等中小型網站(asp, jsp ,php ,asp.net)
畢業設計業務:java(j2ee j2se) vb delphi php .net等畢設業務
模塊業務:各種中小型模塊 java .net
如有需要 價格細談 QQ:27612285
我的網站
HTTP://www.98202.com
HTTP://www.do3w.com
HTTP://www.201cn.com
HTTP://www.630cn.com--%>
*/package com.gton.action.admin;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionForm;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.Action;
import com.gton.tookit.MyForward;
import com.gton.bean.db.DataBean;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
public class AdminBooksPageAction extends Action {
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response) {
int page=1;
int count=10;
int pagecount=0;
String sqlStr="";
String seach="";
String bookTypeID="0";
String seachstr="";
if(request.getParameter("seachstr")!=null&&request.getParameter("seachstr").length()>0)
{
try {
seachstr = new String(request.getParameter("seachstr").getBytes("8859_1"),"GB2312");
System.out.println(seachstr);
} catch (UnsupportedEncodingException ex) {
ex.printStackTrace();
}
}
if(request.getParameter("page")!=null&&request.getParameter("page").length()>0)
{
page=Integer.parseInt(request.getParameter("page"));
}
if(request.getParameter("seach")!=null&&request.getParameter("seach").length()>0)
{
seach=request.getParameter("seach");
if(seach.equals("1"))
{
sqlStr="where Books_Name like '%"+seachstr+"%'";
}else if(seach.equals("2"))
{
sqlStr="where Books_Company like '%"+seachstr+"%'";
}else if(seach.equals("3"))
{
sqlStr="where Books_Company like '%"+seachstr+"%' or Books_Name like '%"+seachstr+"%'";
}
}
if(request.getParameter("bookTypeID")!=null&&request.getParameter("bookTypeID").length()>0)
{
bookTypeID=request.getParameter("bookTypeID");
}
if(sqlStr.equals(""))
{
if(!bookTypeID.equals("0"))
sqlStr="where BookType_ID="+bookTypeID;
}else
{
if(!bookTypeID.equals("0"))
sqlStr+="and BookType_ID="+bookTypeID;
}
DataBean db=new DataBean();
ArrayList list=db.getBooksList(count,page,sqlStr);
System.out.println(list.size());
db.Close();
request.setAttribute("list",list);
request.setAttribute("page",page+"");
request.setAttribute("pagecount",db.pagecount+"");
request.setAttribute("bookTypeID",bookTypeID);
request.setAttribute("seach",seach);
request.setAttribute("seachstr",seachstr);
return MyForward.forward(mapping.findForward("admin_index"),"?action=2");
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -