?? ckhmydcountid.java
字號:
package com.webtier.clientKhmydAction;
import org.apache.struts.action.*;
import javax.servlet.http.*;
import com.service.CkhmydFacade;
import com.service.CkhmydFacadeImpl;
//#--以數(shù)據(jù)庫中的記錄數(shù),查找出多少記錄計算,以便做帳號存貯--
public class CkhmydCountID
extends Action {
private CkhmydFacade khmyd = null;
public CkhmydCountID() {
this.khmyd = new CkhmydFacadeImpl();
}
public ActionForward perform(ActionMapping actionMapping,
ActionForm actionForm,
HttpServletRequest httpServletRequest,
HttpServletResponse httpServletResponse) {
String changeType = String.valueOf(this.khmyd.khmydCount());
httpServletRequest.setAttribute("changeType", changeType);
return actionMapping.findForward("ckhmydCountID");
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -