JSP缓冲区溢出
我有一个 1MB 的文件要上传,并且设置了以下内容,但出现异常。 我认为这是我的缓冲区大小和/或自动刷新设置。
目前:
<%@ page errorPage="error.jsp" buffer="500kb" autoFlush="false" %>
我尝试将缓冲区设置为 2000KB,但没有成功。 有任何想法吗?
谢谢
I have a 1MB file to upload and the following is set and I get an exception. I think it is my buffer size and or the autoFlush setting.
currently:
<%@ page errorPage="error.jsp" buffer="500kb" autoFlush="false" %>
I tried to set the buffer to 2000KB but no luk. Any ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是输出的缓冲区,但文件上传是输入。
解决方案取决于您的 Web 框架。
That is the buffer for output, but a file upload is input.
The solution depends on your web framework.