web.xml里怎么设置文件的上传大小

解决方案 »

  1.   

    web.xml能设置吗?做个拦截器判断下上传文件的大小吧
      

  2.   

    http://only-java.iteye.com/blog/358472希望对你有帮助。
      

  3.   

    一般都不在web.xml中配置的,如果用struts2的话就在struts.xml中配置
      

  4.   

    web.xml中能不能直接设置上传文件的大小,我不知道。建议使用strutgs2的拦截器来控制上传图片的类型和大小。例如:<action name="doUpload" class="com.example.UploadAction"> 
    <interceptor-ref name="basicStack"/>
     <interceptor-ref name="fileUpload"> 
           <param name="allowedTypes">image/jpeg,image/gif</param>
     </interceptor-ref> 
     <interceptor-ref name="fileUpload"> 
        <param name="maximumSize">500000</param> 
    </interceptor-ref>
    <result name="success">
          good_result.jsp
    </result>
    </action>