将multipart / form-data,以10kb的块为单位打破post消息,以便我可以将其发送到服务器。
我需要向服务器发送大字符串(5mb)。在我的apache webserver上,http post max size设置为10kb,我无法使用post方法application / x-www-form-urlencoded(默认值)发布它。
是否有任何选项可以将大型textarea字符串发送到struts动作类,从html textarea表单字段或者我必须增加http post max size?
<html:form action="/Upload" method="post" enctype="multipart/form-data">
<br />
<html:textarea property="comment"></html:textarea>
<br />
<html:submit>
<bean:message key="label.common.button.submit" />
</html:submit>
</html:form>