errorreturnaction.java
来自「在线考试系统的具体实现 利用JSP+myeclipse6.6+tomcat5。5」· Java 代码 · 共 15 行
JAVA
15 行
package org.mmxbb.exam.business;import org.apache.struts.action.*;import javax.servlet.http.*;public class ErrorReturnAction extends Action { public ActionForward execute(ActionMapping actionMapping, ActionForm actionForm, HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) { String action = new String(); action = httpServletRequest.getParameter("action"); /**@todo: complete the business logic here, this is just a skeleton.*/ return actionMapping.findForward("initialquestionaction"); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?