📄 querysfzyselect.java~13~
字号:
package com.webtier.queryInformation;
import org.apache.struts.action.*;
import javax.servlet.http.*;
import com.service.SfzyFacade;
import com.service.SfzyFacadeImpl;
import java.io.UnsupportedEncodingException;
//查询的操作
public class QuerySfzySelect
extends Action {
private SfzyFacade facade;
public QuerySfzySelect() {
this.facade = new SfzyFacadeImpl();
}
public ActionForward perform(ActionMapping actionMapping,
ActionForm actionForm,
HttpServletRequest httpServletRequest,
HttpServletResponse httpServletResponse) throws
UnsupportedEncodingException {
httpServletRequest.setCharacterEncoding("gb2312");
/* Integer iCount = (Integer) httpServletRequest.getAttribute("iCount");
if (iCount == null) {
iCount = new Integer(1);
}
System.out.println("iCount=" + iCount);
System.out.println("total=" + String.valueOf(this.facade.toatl()));
System.out.println("sfzylist=" + this.facade.sfzySelect());
httpServletRequest.setAttribute("iCount", iCount);
httpServletRequest.setAttribute("total", String.valueOf(this.facade.toatl())); //显示有多少条数
httpServletRequest.setAttribute("sfzylist", this.facade.sfzySelect()); //显示头10条的记录熟
return actionMapping.findForward("querySfzySelect");*/
int iCount = 1;
System.out.println("iCount=" + iCount);
httpServletRequest.setAttribute("iCount", String.valueOf(iCount));
httpServletRequest.setAttribute("total", String.valueOf(this.facade.toatl()));
httpServletRequest.setAttribute("sfzylist", this.facade.sfzySelect());
return actionMapping.findForward("querySfzySelect");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -