導航:首頁 > 版本升級 > struts2allowed文件後綴名

struts2allowed文件後綴名

發布時間:2023-07-04 21:25:08

A. struts2上傳文件的類型去哪裡找

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-xwindowmp',

'.zip' : 'application/zip',

B. Struts2的struts.properties文件在哪兒啊

struts.properties 是可以不要的!!!
因為 struts.xml文件中 有 <constant> 這個節點, 你可以把你想寫在struts.properties的自定義配置寫在 struts.xml文件當中.

例如,你想 開啟 struts2 的開發模式
可以直接在 struts.xml文件當中寫上.
<constant name="struts.devMode" value="true「>
不用再去 去創建 一個 struts.properties,並寫上 struts.devMode = true

所有的配置項目,其實 你可以去看看 struts2 默認的配置文件 default.properties.
位置在 struts2-core-2.x.x.jar 的 org.apache.struts2 包 下面的

當然,你可能又會問了,如果同時都在兩個文件配置了,一個相同的項目,哪個是有效的呢
他其實是有一個載入順序的: 先載入 struts.xml,再載入 struts.properties
也就是說 struts.properties 是可以覆蓋 struts.xml裡面的 配置的,
具體 是否 要 struts.properties ,還是得根據 具體情況,具體分析吧,
不過 我基本上不用,免得 出現 配置混亂的情況.呵呵

PS: struts.xml 不能寫成Struts.xml 喲 ,注意首字母 s不能寫成大寫了.

C. Struts2文件下載 火狐和谷歌瀏覽器 文件名後綴多出個 _(下劃線),IE正常

您好!很高興為您答疑!

火狐下您可以使用Firebug檢查下版頁面代碼,確認下Struts.xml 文件 &{fileName}名稱及書寫格式,看權下有沒有錯誤。
您可以在火狐社區了解更多內容。希望我的回答對您有所幫助,如有疑問,歡迎繼續在本平台咨詢。

D. struts2文件上傳中,如何限制上傳的文件類型

只需要在struts配置文件中配置就OK了
案例如下:

<package name="upload" extends="struts-default" namespace="/upload">
<!-- 配置 -->
<action name="upload" class="www.ijava.com.UploadAction" >

<param name="savePath">e:/images/</param>

<!--往fileuploadInterceptor 注入 -->
<interceptor-ref name="defaultStack">
<!-- 改變當前文件運行上傳的類型 -->
<param name="fileUpload.allowedTypes">image/jpeg,image/jpg</param>
<!-- 允許的文件後綴 -->
<param name="fileUpload.allowedExtensions">jpg,jpeg,gif</param>
</interceptor-ref>
<result>/index.jsp</result>
</action>

E. 用Struts2做文件上傳時,前台js怎樣獲得文件對象,文件名,文件內容類型(不用Bean的get,set方法)。

出於對用戶的安全性考慮,js是無法訪問上傳文件的完整路徑,也就是無法獲得file對象,也不能獲得文件內容類型fileContentType,但是可以獲得文件名(傳值或者getElementById,然後對該值進行切割得到文件名和後綴名),故可以獲取後綴名,但與文件內容類型fileContentType可能不一致,所以要進行文件的類型,大小等判斷,還需要傳到後台進行。不過要是圖片的話,js是有一個比較bt的做法可以獲得大小(類型暫且用後綴名來進行判斷,前面也說了獲取文件名的方法)的,根據路徑new一個Image對象,如var image = new Image(); image.src = url;(url就是文件上傳的路徑),image.fileSize就是圖片的大小

F. 為什麼Struts2上傳文件之後擴展名變成了tmp,如何取得文件正確的擴展名

在action中獲取到上傳文件名利用上傳文件名來存儲就不會出現tmp結尾文件了

閱讀全文

與struts2allowed文件後綴名相關的資料

熱點內容
qq怎麼查看別人的收藏 瀏覽:135
地震三參數matlab程序 瀏覽:57
怎樣給優盤文件加密軟體 瀏覽:7
收拾文件有哪些小妙招 瀏覽:431
pdf文件去底網 瀏覽:253
win10重裝系統需要格式化c盤嗎 瀏覽:424
路由器trx文件 瀏覽:655
淘寶店鋪數據包怎麼做 瀏覽:195
win10鍵盤黏連 瀏覽:332
json如何生成表格 瀏覽:323
怎麼修復sql資料庫表 瀏覽:40
微信微博差別 瀏覽:163
簽到積分換禮品app 瀏覽:812
mfc最近打開文件 瀏覽:672
app埋點平台都有哪些app 瀏覽:314
瑞斯康達網路管理界面 瀏覽:254
ca證書管理器linux 瀏覽:358
蘋果id安全提示問題3個字元 瀏覽:949
iphone上好的拍照軟體 瀏覽:579
word內嵌文件怎麼下載 瀏覽:864

友情鏈接