Struts2 多文件上传

Struts2多文件上传只需要将 单文件上传中的File变成File[]  即可,上篇文章:单文件上传

<form action="${pageContext.request.contextPath}/hello/upload_uploadImage.do" enctype="multipart/form-data" method="post">
   			图片1:<input type="file" name="image"  /><br/>
   			图片2:<input type="file" name="image"  /><br/>
   			图片3:<input type="file" name="image"  /><br/>
   			图片4:<input type="file" name="image"  /><br/>
   			<input type="submit" value="上传" />
   		</form> 


action:

public class UploadAction {
	private File[] image;
	private String[] imageFileName;
	private String[] imageContentType;
	private String message;

	public String uploadImage() {
		try {
			String realPath = ServletActionContext.getServletContext().getRealPath("/images");
			File filePath = new File(realPath);
			if (!filePath.exists()) {
				filePath.mkdirs();
			}
			System.out.println("文件存放路径:" + realPath);
			for(int i=0;i<image.length;i++){
				if (image[i] != null) {
					System.out.println("文件名:" + imageFileName[i] + ",文件类型:" + imageContentType[i]);
					File saveFile = new File(filePath, imageFileName[i]);
					FileUtils.copyFile(image[i], saveFile);
				}
			}
			message="文件上传成功!";
		} catch (IOException e) {
			e.printStackTrace();
		}
		catch (Exception e) {
			e.printStackTrace();
		}
		return "message";
	}

	
	public File[] getImage() {
		return image;
	}
	public void setImage(File[] image) {
		this.image = image;
	}
	
	public String[] getImageFileName() {
		return imageFileName;
	}
	public void setImageFileName(String[] imageFileName) {
		this.imageFileName = imageFileName;
	}
	
	public String[] getImageContentType() {
		return imageContentType;
	}
	public void setImageContentType(String[] imageContentType) {
		this.imageContentType = imageContentType;
	}
	
	public String getMessage() {
		return message;
	}
	public void setMessage(String message) {
		this.message = message;
	}

}


转载于:https://www.cnblogs.com/raphael5200/p/5114766.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值