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

📄 viewattachmentaction.java

📁 新技术论坛系统 v1.0 前后台管理的初始用户名 : admin 密码 123456
💻 JAVA
字号:
package com.ntsky.bbs.web.webwork.action.attachment;

import java.util.List;

import com.opensymphony.xwork.Preparable;

import com.ntsky.bbs.domain.Attachment; 
import com.ntsky.bbs.exception.ActionException;
import com.ntsky.bbs.exception.DAOException;
import com.ntsky.bbs.exception.ServiceException;
import com.ntsky.bbs.util.page.Pagination;
import com.ntsky.bbs.util.page.QueryResult;

/**
 * 查看用户上传的附件
 *  
 * @author ntsky
 * @link www.ntsky.com
 * 
 * @version $Revision: 1.2 $ $Date: 2006/07/28 17:04:30 $
 */
public class ViewAttachmentAction extends AttachmentActionSupport {

	private int attId;
	public void setAttId(int attId){
		this.attId = attId;
	}
	
	private Attachment attachment;
	public Attachment getAttachment(){
		return attachment;
	}
	
	/**
	 * 查看附件
	 * <pre>
	 * 	执行成功迁移到 attachment.ftl
	 * </pre>
	 * @return String success 
	 */
	public String execute() throws Exception {
		if(logger.isInfoEnabled()){
			logger.info("查看附件...");
		}
		try{
			attachment = attachmentService.getAttachment(attId);
		}
		catch(DAOException de){
			throw new ActionException(de);
		}
		if(logger.isInfoEnabled()){
			logger.info("取得附件"+attachment.getFilename()+"的信息并返回到显示页面...");
		}		
		return SUCCESS;
    }
		
}

⌨️ 快捷键说明

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