?? booksearchaction.java
字號(hào):
package BookStore;
import javax.sql.DataSource;
import java.sql.Connection;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionMessage;
import org.apache.struts.action.ActionMessages;
import java.util.Vector;
import org.apache.struts.action.DynaActionForm;
public final class BookSearchAction extends Action{
public ActionForward execute(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws Exception {
DynaActionForm bookSearchForm = (DynaActionForm) form;
Integer mode = null;
Integer bookCatId = null;
String key = null;
String field = null;
if (bookSearchForm!=null){
mode = (Integer)bookSearchForm.get("mode"); //搜索模式
bookCatId = (Integer)bookSearchForm.get("bookCatId");
key = (String)bookSearchForm.get("key");
field = (String)bookSearchForm.get("field");
}
ServletContext context = servlet.getServletContext();
DataSource dataSource = (DataSource)context.getAttribute(Constants.DATASOURCE_KEY);
DB db = new DB(dataSource);
SearchStatus schSta = new SearchStatus();
int iMode=1;
int iCatId=0;
if (mode==null){
iCatId = BookCat.GetFirstBookCat(db);
schSta.setCatId(iCatId);
}
else if (mode.intValue()==1){ //按類別查詢
iCatId= bookCatId.intValue();
schSta.setCatId(iCatId);
}
else if (mode.intValue()==2){ //按關(guān)鍵字查詢
iMode = mode.intValue();
schSta.setKey(key);
schSta.setField(field);
}
schSta.setMode(iMode);
int bookCount = Book.GetBookCount(db,iMode,iCatId,field,key);
int iPageCount;
if (bookCount%Constants.BOOK_PAGE_SIZE==0) {
iPageCount = bookCount/Constants.BOOK_PAGE_SIZE;
}
else{
iPageCount = bookCount/Constants.BOOK_PAGE_SIZE+1;
}
schSta.setBookCount(bookCount);
schSta.setPageCount(iPageCount);
Vector bookList = new Vector();
HttpSession session = request.getSession();
session.setAttribute(Constants.BOOK_CAT_LIST_KEY,BookCat.Search(db));
bookList = Book.SearchBook(db,iMode,iCatId,field,key);
session.setAttribute(Constants.BOOK_LIST_KEY,bookList);
session.setAttribute(Constants.BOOK_SEARCH_STATUS_KEY,schSta);
db.close();
return (mapping.findForward("toBookMain"));
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -