struts2学习笔记之十七(上传文件)
2019-04-15 15:13发布
生成海报
文件上传
传统的文件上传
(1)需要将form设置为multipart/form-data;此时会将整个表单以二进制流的方式提交;接下来就无法将通过request.getParameter()来获取请求参数。
(2)需要启用一个文件上传组件(SmartUpload,Common-FileUpload等)
(3)Servlet通过文件上传组件来获取请求参数,获取上传文件。 得到上传文件之后,以IO流的方式把文件写入磁盘
Servlet3.0之后的文件上传
只需要增加一个@MultipartConfig修饰Servlet。
接下来就可使用request.getParameter()获取普通请求参数。
用request.getPart()获取上传文件
得到上传文件之后,以IO流的方式把文件写入磁盘
strust2文件上传
底层支持
在struts2的struts.properties配置文件中,配置有文件上传的上传解析器
struts.multipart.parser=cos //指定使用COS文件上传解析器
struts.multipart.parser=pell //指定使用pell文件上传解析器
struts.multipart.parser=jakarta //默认使用Common-FileUpload文件上传解析器
步骤:
1、与文件上传域的name同名的,类型为File的field.
2、文件上传域的name+FileName,类型为String的field
3、名为文件上传域的name+ContentType,类型为String的field
4、其他的请求参数和以前一样,即对应一个域
5、用IO流写入服务器磁盘即可。
文件过滤
struts2提供了一个文件上传的拦截器,通过配置该拦截器可以轻松实现文件过滤。struts2中的文件上传的过滤器是fileUpload,为了该拦截器起作用,只需要在该Action中配置该拦截器即可。
配置fileUpload拦截器时,可以为其制定两个参数:
allowedTypes
maximumSize
手动过滤文件类型
如果需要判断文件类型,通过xxxContentType属性即可
如果需要判断文件大小,通过File的xxx属性获取文件大小,判断文件大小符合即可
当文件类型或文件大小不符合要求时,系统返回指定逻辑视图(如:input)
文件过滤的种类
A:只允许上传指定类型的文件
B:只允许上传指定大小的文件
文件过滤的方式:
A:在Action中通过代码手动过滤(File类型的field和xxxContentType)
B:直接使用fileUpload的拦截器进行过滤(需要进行配置)
(1)启用fileUpload拦截器(allowedTypes,maximumSize)。文件过滤失败时,struts2会返回input逻辑视图名
(2)需要为input逻辑视图配置物理视图资源
更改错误默认的提示
上传失败后,系统会返回一个input的逻辑视图,在该视图中,对应的页面通过如下代码输出错误提示:
如果需要使用自定义错误提示,下面是本应用中国际化资源文件的代码,应该提供如下国际化信息。
struts.messages.error.file.too.large=”上传文件太大”
struts.messages.error.uploading=”文件上传错误”
struts.messages.error.content.type.not.allowed=”类型不允许”
通过上述国际化消息的key就可以实现自定义的错误提示
实例
<s:form action="addPic" enctype="multipart/form-data">
<s:textfield name="picName" label="图片名"/>
<s:file name="pic" label="请上传图片"/>
<s:submit value="提交"/>
s:form>
public class AddPic extends ActionSupport {
/**
*
*/
private static final long serialVersionUID = 1L;
private String picName;
private File pic;
private String picFileName;
private String picContentType;
@Override
public String execute() throws IOException{
String uploadPath = ServletActionContext.getServletContext().getRealPath("/upload");
String newFileName = UUID.randomUUID().toString() + picFileName.substring(picFileName.lastIndexOf('.'));
FileInputStream is = new FileInputStream(pic);
FileOutputStream os = new FileOutputStream(uploadPath + "/" + newFileName);
byte[] buff = new byte[1024];
int hasRead = 0;
while((hasRead = is.read(buff)) > 0 ){
os.write(buff,0,hasRead);
}
is.close();
os.close();
PicService.add(new Picture(picName,newFileName));
return SUCCESS;
}
}
<action name="addPic" class="org.struts2.action.AddPic">
<interceptor-ref name="fileUpload">
<param name="allowedTypes">image/png,image/jpeg,image/pjpeg,image/gifparam>
<param name="maximumSize">20000param>
interceptor-ref>
<interceptor-ref name="defaultStack"/>
<result name="input">/WEB-INF/content/fileUpload.jspresult>
<result type="chain">listPicresult>
action>
mess_zh_CN.properties文件内容
struts.messages.error.file.too.large=u6587u4EF6u592Au5927
struts.messages.error.content.type.not.allowed=u53EAu5141u8BB8jpeg,gif,pngu56FEu7247u4E0Au4F20
配置:
"struts.custom.i18n.resources" value="resources/mess" />
打开微信“扫一扫”,打开网页后点击屏幕右上角分享按钮