Struts文件上传--2.多文件上传

.多文件上传

步骤如下:

(1)将commons-io-x.x.x.jar包和commons-fileupload-x.x.x.jar包导入到项目的WEB-INF/lib目录下;

(2)把form表单的enctype类型设为multipart/form-data,如下:


<form action="${pageContext.request.contextPath}/uploadImage.do" method="post" enctype="multipart/form-data">
<input type="file" name="image"/><br>
<input type="file" name="image"/><br>
<input type="submit" value="submit"/>
</form>

(3)在Action类中添加以下属性:

         1)File[] filename:文件名要和表单中提交的name属性相同;

         2)String[] filenameContentType得到文件的类型(文件名+ContentType是固定格式);

         3)String[] filenameFileName得到文件的名称(文件名+FileName是固定格式)。

Action类中需要使用FileUtils.copyFile(srcFile,destFile),用来复制上传的文件到项目中。

示例如下:

struts.xml中关键代码:

<action name="uploadImage" class="com.chen.action.SubmitForm" method="upload">
			<!-- 为Action的 imagePath属性注入值-->
			<param name="imagePath">/images</param>
			<result name="success">/sayMessage.jsp</result>
			<result name="error">/sayMessage.jsp</result>
</action>

Action类的代码:

public class SubmitForm {
	//返回信息
	public String message=null; 
	//设置上传文件的保存文件路径
	public String imagePath=null;
	//文件
	private File[] image;
	//文件类型
	private String[] imageContentType;
	//文件名
	private String[] imageFileName;
	public String upload(){
		//获取真实路径
		String realPath=ServletActionContext.getServletContext().getRealPath(imagePath);
		File file=new File(realPath);
		if(!file.exists()){
			file.mkdirs();
		}
		try {
			for(int i=0;i<image.length;i++){
				FileUtils.copyFile(image[i], new File(file,imageFileName[i]));
			}
			message="save OK";
			return "success";
		} catch (IOException e) {
			message="save error";
			return "error";
		}
	}
	public String getMessage() {
		return message;
	}
	public void setMessage(String message) {
		this.message = message;
	}
	public String getImagePath() {
		return imagePath;
	}
	public void setImagePath(String imagePath) {
		this.imagePath = imagePath;
	}
	public File[] getImage() {
		return image;
	}
	public void setImage(File[] image) {
		this.image = image;
	}
	public String[] getImageContentType() {
		return imageContentType;
	}
	public void setImageContentType(String[] imageContentType) {
		this.imageContentType = imageContentType;
	}
	public String[] getImageFileName() {
		return imageFileName;
	}
	public void setImageFileName(String[] imageFileName) {
		this.imageFileName = imageFileName;
	}
}

注:通过Struts的常量可以配置上传文件的大小。

<constant  name="struts.multipart.maxSize"   value="10701096"/>



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值