struts2 fileupload最大文件大小
我正在使用 fileUpload 拦截器来上传文件:)。 我已将最大文件大小设置为拦截器参数:
<interceptor-ref name="defaultStack">
<param name="fileUpload.maximumSize">20000</param>
</interceptor-ref>
现在,我想在我的输入/表单 jsp 中获取该值。 例如显示一条消息“上传配置文件(最大大小 20kb)”。 我如何获得这个值? 我可以看到有一个实例变量 FileUpload.maximumSize,但是如何获取堆栈中拦截器的实例呢?
tnx
I'm using the fileUpload interceptor to upload files :). I've set a maximum file size as a interceptor parameter:
<interceptor-ref name="defaultStack">
<param name="fileUpload.maximumSize">20000</param>
</interceptor-ref>
Now, I want to get this value in my input/form jsp. To have a message for example "upload the config file (max. size 20kb)". How do I get this value? I can see that there is an instance variable FileUpload.maximumSize, but then how do I get instances of inteceptors in the stack?
tnx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
解决方案是使用 xml api 读取您的配置文件并获取您正在查找的值。
A solution would be to read your configuration file using the xml apis and get the value you are looking for.
http://cwiki.apache.org/WW/file-upload-interceptor。 html
http://cwiki.apache.org/WW/file-upload-interceptor.html