struts2实现多文件上传

网友投稿 317 2023-01-22


struts2实现多文件上传

本文实例为大家分享了struts2实现多文件上传的具体代码,供大家参考,具体内容如下

首先搭建好struts2的开发环境,导入struts2需要的最少jar包

新建upload.jsp页面,注意一定要把表单的enctype设置成multipart/form-data

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

<%@taglib prefix="s" uri="/struts-tags"%>

file:

fileDesc:



file:

fileDesc:



file:

fileDesc:

新建一个UploadAction类,这个类主要有三个属性,并为这三个属性生成对应的set get方法

[File Name] : 保存要上传的文件

[File Name]ContentType : 保存要上传的文件类型

[File Name]FileName :保存上传的文件名

package cn.lfd.web.upload;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.InputStream;

import java.io.OutputStream;

import java.util.List;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

/*

* 多文件上传要把对应的属性类型都改为List集合,struts自动会把多个文件的数据封装到里面

*/

public class UploadAction extends ActionSupport {

private static final long serialVersionUID = 1L;

private List file;

private List fileContentType;

private List fileFileName;

private List fileDesc;

public List getFile() {

return file;

}

public void setFile(List file) {

this.file = file;

}

public List getFileContentType() {

return fileContentType;

}

public void setFileContentType(List fileContentType) {

this.fileContentType = fileContentType;

}

public List getFileFileName() {

return fileFileName;

}

public void setFileFileName(List fileFileName) {

this.fileFileName = fileFileName;

}

public List getFileDesc() {

return fileDesc;

}

public void setFileDesc(List fileDesc) {

this.fileDesc = fileDesc;

}

@Override

public String execute() throws Exception {

//遍历文件集合,通过IO流把每一个上传的文件保存到upload文件夹下面

for(int i=0;i

//得到要保存的文件路径

String dir = ServletActionContext.getServletContext().getRealPath("/upload/"+fileFileName.get(i));

OutputStream out = new FileOutputStream(dir);

InputStream in = new FileInputStream(file.get(i));

byte[] flush = new byte[1024];

int len = 0;

while((len=in.read(flush))!=-1) {

out.write(flush, 0, len);

}

RYbFTm in.close();

out.close();

}

return "input";

}

}

然后在struts.xml配置文件中配置一下

"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"

"http://struts.apache.org/dtds/struts-2.0.dtd">

200000

text/html,text/xml

txt,html,xml

/success.jsp

/upload.jsp

在src目录下新建一个message.properties文件定制错误消息

struts.messages.error.uploading - 文件不能被上传

struts.messages.error.file.too.large - 文件超出大小

struts.messages.error.content.type.not.allowed - 文件类型不合法

struts.messages.error.file.extension.not.allowed - 文件扩展名不合法

显示效果如下图:

//得到要保存的文件路径

String dir = ServletActionContext.getServletContext().getRealPath("/upload/"+fileFileName.get(i));

OutputStream out = new FileOutputStream(dir);

InputStream in = new FileInputStream(file.get(i));

byte[] flush = new byte[1024];

int len = 0;

while((len=in.read(flush))!=-1) {

out.write(flush, 0, len);

}

RYbFTm in.close();

out.close();

}

return "input";

}

}

然后在struts.xml配置文件中配置一下

"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"

"http://struts.apache.org/dtds/struts-2.0.dtd">

200000

text/html,text/xml

txt,html,xml

/success.jsp

/upload.jsp

在src目录下新建一个message.properties文件定制错误消息

struts.messages.error.uploading - 文件不能被上传

struts.messages.error.file.too.large - 文件超出大小

struts.messages.error.content.type.not.allowed - 文件类型不合法

struts.messages.error.file.extension.not.allowed - 文件扩展名不合法

显示效果如下图:


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:springmvc+kindeditor文件上传实例详解
下一篇:详解使用IntelliJ IDEA新建Java Web后端resfulAPI模板
相关文章

 发表评论

暂时没有评论,来抢沙发吧~