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

📄 preupdateafficheaction.java

📁 一个oa系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.oa.personaloffice.action;

import java.util.ArrayList;
import java.util.Arrays;

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.oa.db.Affiche;
import com.oa.db.AfficheDAOImpl;
import com.oa.db.Department;
import com.oa.db.DepartmentDAO;

/**
 * MyEclipse Struts Creation date: 09-07-2007
 * 
 * XDoclet definition:
 * 
 * @struts.action validate="true"
 */
public class PreUpdateAfficheAction extends Action {
	/*
	 * Generated Methods
	 */

	/**
	 * Method execute
	 * 
	 * @param mapping
	 * @param form
	 * @param request
	 * @param response
	 * @return ActionForward
	 */
	private Affiche affiche;

	private AfficheDAOImpl afficheDao;

	public void setAffiche(Affiche affiche) {
		this.affiche = affiche;
	}

	public void setAfficheDao(AfficheDAOImpl afficheDao) {
		this.afficheDao = afficheDao;
	}
	
	private Department dept;
	
	private DepartmentDAO deptDao;
	
	public void setDeptDao(DepartmentDAO deptDao) {
		this.deptDao = deptDao;
	}
	
	public void setDept(Department dept) {
		this.dept = dept;
	}

	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response) {
		// TODO Auto-generated method stub
		String afficheId = request.getParameter("afficheId");
		affiche = afficheDao.findOneAfficheByAfficheId(afficheId);				
		ArrayList<Department> deptList = new ArrayList<Department>();
		deptList = deptDao.findAllDept();						
		int deptId = affiche.getDeptId();
		Department[] deptArray = new Department[deptList.size()];
		deptArray = deptList.toArray(deptArray);
		for (int i = 0; i < deptArray.length; i++) {
			if (deptArray[i].getId() == deptId) {
				dept = deptArray[i];
				deptArray[i] = deptArray[0];
				deptArray[0] = dept;
				deptList = new ArrayList<Department>(Arrays.asList(deptArray));
			}
		}
		request.setAttribute("affiche", affiche);
		request.setAttribute("deptList", deptList);
		return mapping.findForward("updateAffiche");
	}

}

⌨️ 快捷键说明

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