1、在src的目录下新建文件fileUpload.properties
如图:
文件内容为
struts.messages.error.uploading=上传错误: {0} struts.messages.error.file.too.large=上传文件过大: {0} "{1}" "{2}" {3} struts.messages.error.content.type.not.allowed=:不支持的文件类型 {0} "{1}" struts.messages.error.file.extension.not.allowed=不支持的文件扩展名: {0} "{1}" "{2}" {3}
2、在struts.xml中配置文件名
<struts> <!-- 指定国际化资源文件的baseName为fileUpload--> <constant name="struts.custom.i18n.resources" value="fileUpload" />
</struts>
3.jsp文件中便可显示定义的文件提示内容
<s:fielderror> </s:fielderror>
时间: 2024-10-29 12:58:05