⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dhsupplier2action.java

📁 一个小型的医疗管理系统
💻 JAVA
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xslpackage com.yourcompany.struts.action;import java.sql.SQLException;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 bean.HeadDoctor;import bean.Supplier;import com.yourcompany.struts.form.DhSupplier2Form;/** * MyEclipse Struts Creation date: 10-20-2005 *  * XDoclet definition: *  * @struts.action path="/dhSupplier2" name="dhSupplier2Form" *                input="/form/dhSupplier2.jsp" scope="request" validate="true" */public class DhSupplier2Action extends Action {	// --------------------------------------------------------- Instance	// Variables	// --------------------------------------------------------- Methods	/**	 * Method execute	 * 	 * @param mapping	 * @param form	 * @param request	 * @param response	 * @return ActionForward	 * @throws SQLException 	 */	public ActionForward execute(ActionMapping mapping, ActionForm form,			HttpServletRequest request, HttpServletResponse response) throws SQLException {		DhSupplier2Form dhSupplier2Form = (DhSupplier2Form) form;		// TODO Auto-generated method stub		HttpSession session = request.getSession();		HeadDoctor hd = (HeadDoctor)session.getAttribute("headDoctor");		Supplier supplier = new Supplier(dhSupplier2Form.getSupplierId(),				dhSupplier2Form.getName(), dhSupplier2Form.getAddress(),				dhSupplier2Form.getTele(), dhSupplier2Form.getFax());		if(hd.editSupplier(supplier.getSupplierid(),supplier)){			session.setAttribute("message","update success");			return mapping.findForward("success");		}else{			session.setAttribute("message","update error");			return mapping.findForward("error");		}			}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -