`

struts2文件上传如何限制上传文件类型(类型列表)

阅读更多

StarStreamstruts2文件上传如何限制上传文件类型(类型列表)

这个在struts2的doc中已经有所说明,但是说得并不详细,而且他给的例子是有错误的,下面我将列出文件上传并限制类型的具体步骤

struts2版本是2.1.6

struts2是根据contentType来限制的,并不是文件的扩展名

比如我想仅上传image/png,image/gif,image/jpeg这三种文件类型

第一种方法是通过javascript校验来限制,这个比较简单,获取input的value然后截取扩展名进行判断即可

第二种是根据struts2自带的fileupload拦截器中提供的allowedTypes来进行限制,步骤如下:

1 配置fileupload拦截器

struts2的defaultStack中已经含有fileupload拦截器,如果想加入allowedTypes参数,需要从新写一个defaultstack ,拷贝过来修改一下即可:

            <interceptor-stack name="myDefaultStack">

                <interceptor-ref name="exception"/>

                <interceptor-ref name="alias"/>

                <interceptor-ref name="servletConfig"/>

                <interceptor-ref name="i18n"/>

                <interceptor-ref name="prepare"/>

                <interceptor-ref name="chain"/>

                <interceptor-ref name="debugging"/>

                <interceptor-ref name="profiling"/>

                <interceptor-ref name="scopedModelDriven"/>

                <interceptor-ref name="modelDriven"/>

                <interceptor-ref name="fileUpload">

                  <param name="allowedTypes">

                     image/png,image/gif,image/jpeg

                  </param>

                </interceptor-ref>

                <interceptor-ref name="checkbox"/>

                <interceptor-ref name="staticParams"/>

                <interceptor-ref name="actionMappingParams"/>

                <interceptor-ref name="params">

                  <param name="excludeParams">dojo\..*,^struts\..*</param>

                </interceptor-ref>

                <interceptor-ref name="conversionError"/>

                <interceptor-ref name="validation">

                    <param name="excludeMethods">input,back,cancel,browse</param>

                </interceptor-ref>

                <interceptor-ref name="workflow">

                    <param name="excludeMethods">input,back,cancel,browse</param>

                </interceptor-ref>

            </interceptor-stack>

        </interceptors>

        <default-interceptor-ref name="myDefaultStack"></default-interceptor-ref>

仅修改代码中的

                <interceptor-ref name="fileUpload">

                  <param name="allowedTypes">

                     image/png,image/gif,image/jpeg

                  </param>

                </interceptor-ref>

上面配置的是上传文件类型的限制,其实共有两个参数

maximumSize (可选) - 这个拦截器允许的上传到action中的文件最大长度(以byte为单位). 注意这个参数和在webwork.properties中定义的属性没有关系,默认2MB

allowedTypes (可选) - 以逗号分割的contentType类型列表(例如text/html),这些列表是这个拦截器允许的可以传到action中的contentType.如果没有指定就是允许任何上传类型.

2 jsp页面定义如下(testFileUpload.jsp)

    <s:form action="testFileUpload" method="post" enctype="multipart/form-data">

        <s:file name="file"theme="simple"/>

        <s:fielderror name="file"></s:fielderror>

        <s:submit/>

    </s:form>

3 后台的action声明如下(我用的是struts2的注解进行action配置)

public class TestFileUploadAction extends ActionSupport{

    private File file;

    private String fileContentType;

    private String fileFileName;

    @Action(

            value = "testFileUpload", results = {

                @Result(name = "input", location = "/testFileUpload.jsp"),

                @Result(name = "success", location = "/testFileUploadSuccess.jsp")

            }

    )

    public String execute() {

        return SUCCESS;

    }

    get/set......

}

注意:如果jsp中file的name="xxx",那么后台action中的属性要做相应更改为

    private File xxx;

    private String xxxContentType;

    private String xxxFileName;

同时注意大小写一定要一致

4 定义错误文件类型的消息提示,这个需要用到struts2的资源文件,在struts.properties文件中加入

struts.custom.i18n.resources=globalMessages

globalMessages对应着资源文件名

5 在源文件夹下定义资源文件globalMessages.properties,并在里面加入如下信息:

struts.messages.error.content.type.not.allowed=upload file contenttype is invalidate

这里稍作说明(拷贝一下struts2的帮助):

如果你的action实现了ValidationAware接口(如果action继承了ActionSupport,那么就相当于实现了ValidationAware),这个拦截器就可以添加几种字段错误.这些错误信息是基于存储在struts-messages.properties文件中的一些i18n值,这个文件是所有i18n请求的默认文件.你可以在自己消息文件的复写以下key的消息文字

struts.messages.error.uploading - 文件不能上传的通用错误信息

struts.messages.error.file.too.large - 上传文件长度过大的错误信息

struts.messages.error.content.type.not.allowed - 当上传文件不符合指定的contentType

以上配置完毕后,测试一下,对于非法的contentType,例如xxx.log这个文件的的contentType是pplication/octet-stream

会给出提示:upload file contenttype is invalidate

 

'.a'      : 'application/octet-stream',   

'.ai'     : 'application/postscript',   

'.aif'    : 'audio/x-aiff',   

'.aifc'   : 'audio/x-aiff',   

'.aiff'   : 'audio/x-aiff',   

'.au'     : 'audio/basic',   

'.avi'    : 'video/x-msvideo',   

'.bat'    : 'text/plain',   

'.bcpio' : 'application/x-bcpio',   

'.bin'    : 'application/octet-stream',   

'.bmp'    : 'image/x-ms-bmp',   

'.c'      : 'text/plain',   

'.cdf'    : 'application/x-cdf',   

'.cdf'    : 'application/x-netcdf',   

'.cpio'   : 'application/x-cpio',   

'.csh'    : 'application/x-csh',   

'.css'    : 'text/css',   

'.dll'    : 'application/octet-stream',   

'.doc'    : 'application/msword',   

'.dot'    : 'application/msword',   

'.dvi'    : 'application/x-dvi',   

'.eml'    : 'message/rfc822',   

'.eps'    : 'application/postscript',   

'.etx'    : 'text/x-setext',   

'.exe'    : 'application/octet-stream',   

'.gif'    : 'image/gif',   

'.gtar'   : 'application/x-gtar',   

'.h'      : 'text/plain',   

'.hdf'    : 'application/x-hdf',   

'.htm'    : 'text/html',   

'.html'   : 'text/html',   

'.ief'    : 'image/ief',   

'.jpe'    : 'image/jpeg',   

'.jpeg'   : 'image/jpeg',   

'.jpg'    : 'image/jpeg',   

'.js'     : 'application/x-javascript',   

'.ksh'    : 'text/plain',   

'.latex' : 'application/x-latex',   

'.m1v'    : 'video/mpeg',   

'.man'    : 'application/x-troff-man',   

'.me'     : 'application/x-troff-me',   

'.mht'    : 'message/rfc822',   

'.mhtml' : 'message/rfc822',   

'.mif'    : 'application/x-mif',   

'.mov'    : 'video/quicktime',   

'.movie' : 'video/x-sgi-movie',   

'.mp2'    : 'audio/mpeg',   

'.mp3'    : 'audio/mpeg',   

'.mpa'    : 'video/mpeg',   

'.mpe'    : 'video/mpeg',   

'.mpeg'   : 'video/mpeg',   

'.mpg'    : 'video/mpeg',   

'.ms'     : 'application/x-troff-ms',   

'.nc'     : 'application/x-netcdf',   

'.nws'    : 'message/rfc822',   

'.o'      : 'application/octet-stream',   

'.obj'    : 'application/octet-stream',   

'.oda'    : 'application/oda',   

'.p12'    : 'application/x-pkcs12',   

'.p7c'    : 'application/pkcs7-mime',   

'.pbm'    : 'image/x-portable-bitmap',   

'.pdf'    : 'application/pdf',   

'.pfx'    : 'application/x-pkcs12',   

'.pgm'    : 'image/x-portable-graymap',   

'.pl'     : 'text/plain',   

'.png'    : 'image/png',   

'.pnm'    : 'image/x-portable-anymap',   

'.pot'    : 'application/vnd.ms-powerpoint',   

'.ppa'    : 'application/vnd.ms-powerpoint',   

'.ppm'    : 'image/x-portable-pixmap',   

'.pps'    : 'application/vnd.ms-powerpoint',   

'.ppt'    : 'application/vnd.ms-powerpoint',   

'.ps'     : 'application/postscript',   

'.pwz'    : 'application/vnd.ms-powerpoint',   

'.py'     : 'text/x-python',   

'.pyc'    : 'application/x-python-code',   

'.pyo'    : 'application/x-python-code',   

'.qt'     : 'video/quicktime',   

'.ra'     : 'audio/x-pn-realaudio',   

'.ram'    : 'application/x-pn-realaudio',   

'.ras'    : 'image/x-cmu-raster',   

'.rdf'    : 'application/xml',   

'.rgb'    : 'image/x-rgb',   

'.roff'   : 'application/x-troff',   

'.rtx'    : 'text/richtext',   

'.sgm'    : 'text/x-sgml',   

'.sgml'   : 'text/x-sgml',   

'.sh'     : 'application/x-sh',   

'.shar'   : 'application/x-shar',   

'.snd'    : 'audio/basic',   

'.so'     : 'application/octet-stream',   

'.src'    : 'application/x-wais-source',   

'.sv4cpio': 'application/x-sv4cpio',   

'.sv4crc' : 'application/x-sv4crc',   

'.swf'    : 'application/x-shockwave-flash',   

'.t'      : 'application/x-troff',   

'.tar'    : 'application/x-tar',   

'.tcl'    : 'application/x-tcl',   

'.tex'    : 'application/x-tex',   

'.texi'   : 'application/x-texinfo',   

'.texinfo': 'application/x-texinfo',   

'.tif'    : 'image/tiff',   

'.tiff'   : 'image/tiff',   

'.tr'     : 'application/x-troff',   

'.tsv'    : 'text/tab-separated-values',   

'.txt'    : 'text/plain',   

'.ustar' : 'application/x-ustar',   

'.vcf'    : 'text/x-vcard',   

'.wav'    : 'audio/x-wav',   

'.wiz'    : 'application/msword',   

'.wsdl'   : 'application/xml',   

'.xbm'    : 'image/x-xbitmap',   

'.xlb'    : 'application/vnd.ms-excel',   

'.xls'    : 'application/excel',   

'.xls'    : 'application/vnd.ms-excel',   

'.xml'    : 'text/xml',   

'.xpdl'   : 'application/xml',   

'.xpm'    : 'image/x-xpixmap',   

'.xsl'    : 'application/xml',   

'.xwd'    : 'image/x-xwindowdump',   

'.zip'    : 'application/zip',

 

分享到:
评论
1 楼 gpo 2011-11-28  
         很好 

相关推荐

    struts2文件上传下载源代码

    在Struts2中,文件上传和下载是常见的功能需求,特别是在处理用户交互和数据交换时。这篇博客文章提供的"struts2文件上传下载源代码"旨在帮助开发者理解和实现这些功能。 文件上传功能允许用户从他们的设备上传文件...

    struts2实现文件上传下载

    首先,我们需要了解Struts2中的文件上传机制。Struts2提供了`FileUploadInterceptor`拦截器来处理文件上传请求。在处理文件上传时,开发者需要在Action类中声明一个`List&lt;FileInfo&gt;`类型的字段,用于接收上传的文件...

    struts2文件上传,一直报类型不允许的问题

    Struts2 文件上传时遇到“类型不允许的问题”通常与文件扩展名验证有关,这涉及到Struts2框架的安全配置。在Struts2中,为了防止恶意用户上传不安全的文件(如脚本或可执行文件),系统会设定允许上传的文件类型。当...

    struts2文件上传jar

    `FileItem` 是Apache Commons FileUpload提供的类,它可以更精细地控制文件上传的细节,如文件大小限制、文件类型检查等。而`File` 对象则对应于服务器上的临时文件路径,通常在Action执行完毕后,你需要将文件移动...

    Struts2多个文件上传

    这两个库提供了文件上传的基础功能,使得Struts2能够处理`multipart/form-data`类型的请求,这是文件上传的标准格式。 Struts2本身并不包含一个内置的请求解析器来处理文件上传。相反,它依赖于第三方库,如Jakarta...

    struts2文件上传实例

    1. **.struts2配置**:在Struts2框架中,需要在`struts.xml`配置文件中添加相应的action配置,声明文件上传的处理方法。通常,你需要设置`&lt;result&gt;`类型为`stream`,以便处理上传的文件。 2. **Action类**:创建一...

    struts2文件上传例子.rar

    同时,我们还需要配置`struts.multipart.saveDir`属性,指定临时文件保存的位置,以及`struts.multipart.maxSize`,限制上传文件的最大大小。 在视图层,通常会有一个HTML表单,使用`enctype="multipart/form-data...

    struts2文件上传

    在Struts2框架中,文件上传是通过特定的拦截器实现的,这些拦截器处理了文件上传请求并提供了安全性和大小限制。下面将详细讨论这个主题。 首先,我们来看配置拦截器的部分。在Struts2中,`struts.xml`是配置文件,...

    struts文件上传大小限制问题

    本篇文章将详细探讨Struts文件上传大小限制的问题。 首先,我们需要理解文件上传的基本流程。在Struts中,当用户通过表单提交文件时,数据会被封装到`ActionForm`对象中,然后由Struts的控制器组件处理。默认情况下...

    简单易懂的struts2文件上传

    在Struts2中,文件上传功能是一个常见的需求,例如用户可能需要上传图片、文档或其他类型的文件。本教程将深入浅出地讲解如何在Struts2中实现文件上传,并提供一个简单的实例来帮助理解。 1. **Struts2文件上传概述...

    struts2文件上传和下载

    Struts2允许设置最大上传文件大小,并通过`filter-mapping`配置限制可接受的MIME类型。 6. **错误处理与反馈**: 在处理文件上传和下载时,可能会出现各种异常,如文件不存在、磁盘空间不足等。因此,需要适当的错误...

    Struts2之struts2文件上传详解案例struts011

    在Struts2中,文件上传功能是常见的需求,比如用户可能需要上传个人照片、文档或者其他类型的文件。在这个"Struts2之struts2文件上传详解案例struts011"中,我们将深入探讨如何实现这一功能。 首先,我们需要了解...

    swfuplaod+struts2实现多文件上传

    结合Struts2,一个流行的Java Web框架,可以构建出高效、用户友好的文件上传功能。下面将详细介绍如何利用SWFUpload与Struts2来实现多文件上传。 **一、SWFUpload组件介绍** SWFUpload 是一个JavaScript库,它利用...

    struts2 文件上传

    Struts2 文件上传是Web开发中的一个重要功能,它允许用户通过网页上传文件到服务器。Struts2 是一个基于MVC(Model-View-Controller)设计模式的Java Web框架,提供了丰富的特性和强大的控制层功能,使得文件上传...

    JavaEE Struts文件上传

    2. **添加Struts2插件**:Struts2的文件上传功能依赖于`struts2-convention-plugin`和`struts2-core`等库。在`struts.xml`配置文件中,需要启用Multipart解析器,例如添加`&lt;constant name="struts.multipart.parser...

    struts2文件上传下载

    在Struts2框架中实现文件上传和下载功能,是Web开发中常见的需求。Struts2作为一个成熟的MVC框架,提供了简单的API和标记库来处理文件上传下载的业务逻辑。下面是基于给定文件内容的知识点详细说明。 ### Struts2...

    struts2框架下的文件上传

    Struts2框架是Java Web开发中的一个流行MVC(Model-View-Controller)框架,它提供了丰富的功能,包括处理表单提交、文件上传等。在Struts2中,文件上传是一个常见的需求,可以帮助用户从客户端上传文件到服务器。...

    struts2+jquery+ajax文件异步上传

    在Struts2的配置文件中,我们可以定义这些规则,例如限制上传文件的大小,只接受特定类型的文件(如图片、文档等)。此外,我们还需要关注安全问题,防止恶意文件上传。 文件上传的实现通常包括以下几个步骤: 1. ...

    struts2 实现文件批量上传

    1. **文件上传组件**:在Struts2中,我们通常使用`Commons FileUpload`库来处理文件上传。这个库提供了处理多部分HTTP请求的能力,是Java中处理文件上传的标准库。我们需要在Struts2配置文件中引入对应的拦截器`...

Global site tag (gtag.js) - Google Analytics