Struts2 上傳文件類型

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 ,拷貝過來修改一下即可:

          <interceptors>  

             <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>

 

  攔截器棧在<package>標籤內 <action>標籤外配置 如上我們如果把它定義成默認攔截器的話就不需要在

  <action>標籤中引入,沒有的話需要引入攔截器

   <action>

       <result name="input">/error/dbError.jsp</result>

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

   </action>

    文件上傳類型錯誤action會直接返回input,所以不需要在action中return "input" ;

 

還可以在<package>標籤外定義上傳問價你的路徑跟大小:

    <constant name="struts.multipart.saveDir" value="/upload/detailed"></constant>
    <constant name="struts.multipart.maxSize" value="1024"></constant>

最最最重要的一點:上傳文件的表單 必須加上:enctype="multipart/form-data" 不加必然報input錯誤。

 

下面兩點沒做過測試上面的一般已經夠用了:

 

 定義錯誤文件類型的消息提示,這個需要用到struts2的資源文件,在struts.properties文件中加入

struts.custom.i18n.resources=globalMessages

globalMessages對應着資源文件名

在源文件夾下定義資源文件
globalMessages.properties,並在裏面加入如下信息:

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

 

 

 

以上配置完畢後,測試一下,對於非法的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',

發佈了32 篇原創文章 · 獲贊 6 · 訪問量 4萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章