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

📄 showonedocumentweeklyaction.java

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

import java.io.UnsupportedEncodingException;
import java.util.ArrayList;

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.DocumentWeekly;
import com.oa.db.DocumentWeeklyDAO;

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

	/**
	 * Method execute
	 * 
	 * @param mapping
	 * @param form
	 * @param request
	 * @param response
	 * @return ActionForward
	 */
	private DocumentWeekly documentWeekly;

	private DocumentWeeklyDAO documentWeeklyDao;

	public void setDocumentWeekly(DocumentWeekly documentWeekly) {
		this.documentWeekly = documentWeekly;
	}

	public void setDocumentWeeklyDao(DocumentWeeklyDAO documentWeeklyDao) {
		this.documentWeeklyDao = documentWeeklyDao;
	}

	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response) {
		// TODO Auto-generated method stub
		String documentCycle = "";
		try {
			documentCycle = new String(request.getParameter("documentCycle").getBytes("iso8859-1"),"gb2312");
		} catch (UnsupportedEncodingException e) {
			// TODO 自动生成 catch 块
			e.printStackTrace();
		}
		ArrayList<DocumentWeekly> documentWeeklyList = new ArrayList<DocumentWeekly>();
		documentWeeklyList = documentWeeklyDao.showOneDocumentWeeklyByCycle(documentCycle);
		documentWeekly = documentWeeklyList.get(0);
		request.setAttribute("documentWeekly1", documentWeekly);
		request.setAttribute("documentWeeklyList", documentWeeklyList);
		return mapping.findForward("showOneDocumentWeekly");
	}
}

⌨️ 快捷键说明

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