Struts2中,我们在我们的应用程序,我的文件上传struts2的上传功能。现在,我的就是,我们需要让上传到的“docx”和“的。xlsx”。我列出的“应用程序/ msword”和“应用程序/ vnd.ms-excel的”为allowedTypes在strut.xml。通过这一点,我们可以只上传的“doc”和“XLS”文件,但不能的“docx”和“的。xlsx”的文件。
新增WPS、MS Office2010文件的MIME类型:
<!-- 支持MS Office2003-2010,WPS Office 的Word、Excel、PPT-->
<param name="fileUpload.allowedTypes">
application/vnd.ms-excel,application/msword,application/vnd.ms-powerpoint
,
application/vnd.openxmlformats-officedocument.wordprocessingml.document,
application/vnd.openxmlformats-officedocument.presentationml.presentation,
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,
application/kswps,
application/kset,
application/ksdps
</param>
一、以下为WPS的MIME(allowedTypes)
.wps:application/kswps
.et:application/kset
.dps:application/ksdps
二、以下为MS Office2003-2010的MIME(allowedTypes)
.doc:application/msword
.xls:application/vnd.ms-excel
.ppt:application/vnd.ms-powerpoint
.docm: application/vnd.ms-word.document.macroEnabled.12
.docx: application/vnd.openxmlformats-officedocument.wordprocessingml.document
.dotm: application/vnd.ms-word.template.macroEnabled.12
.dotx: application/vnd.openxmlformats-officedocument.wordprocessingml.template
.potm: application/vnd.ms-powerpoint.template.macroEnabled.12
.potx: application/vnd.openxmlformats-officedocument.presentationml.template
.ppam: application/vnd.ms-powerpoint.addin.macroEnabled.12
.ppsm: application/vnd.ms-powerpoint.slideshow.macroEnabled.12
.ppsx: application/vnd.openxmlformats-officedocument.presentationml.slideshow
.pptm: application/vnd.ms-powerpoint.presentation.macroEnabled.12
.pptm: application/vnd.ms-powerpoint.presentation.macroEnabled.12
.pptx: application/vnd.openxmlformats-officedocument.presentationml.presentation
.xlam: application/vnd.ms-excel.addin.macroEnabled.12
.xlsb: application/vnd.ms-excel.sheet.binary.macroEnabled.12
.xlsb: application/vnd.ms-excel.sheet.binary.macroEnabled.12
.xlsm: application/vnd.ms-excel.sheet.macroEnabled.12
.xlsx: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
.xltm: application/vnd.ms-excel.template.macroEnabled.12
.xltx: application/vnd.openxmlformats-officedocument.spreadsheetml
.xps: application/vnd.ms-xpsdocument