📄 shipvineditoraction.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.fely.struts.action;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
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 com.fely.struts.form.ShipvinEditorForm;
/**
* MyEclipse Struts
* Creation date: 04-18-2008
*
* XDoclet definition:
* @struts.action path="/shipvinEditor" name="shipvinEditorForm" input="/form/systemManage/shipvinEditor.jsp" scope="request" validate="true"
*/
public class ShipvinEditorAction extends Action {
/*
* Generated Methods
*/
/**
* Method execute
* @param mapping
* @param form
* @param request
* @param response
* @return ActionForward
*/
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
ShipvinEditorForm shipvinEditorForm = (ShipvinEditorForm) form;// TODO Auto-generated method stub
try{
PrintWriter out = response.getWriter();
try{
String oper = request.getParameter("oper");
com.felyxiu.www.storage.bll.BShipVin B_V = new com.felyxiu.www.storage.bll.BShipVin();
if(oper.equals("add"))
{
B_V.ShipVinAdd(shipvinEditorForm);
}
else if(oper.equals("edit"))
{
B_V.ShipVinEdit(shipvinEditorForm);
}
else if(oper.equals("delete"))
{
B_V.ShipVinDelete(shipvinEditorForm.getShipvia_id());
}
out.print(B_V.ShipVinConvertToHTMLTable());
}
catch(Exception e){
out.print(e.getMessage());
}
}catch(IOException e1){
e1.printStackTrace();
}
return null;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -