Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 POST 方法从 HTML 表单中获取大量数据。
req.getParameter();
将值作为字符串返回,但我得到的值太大以至于需要 StringBuilder。
我该怎么办 ?
POST 参数大小似乎有各种限制,具体取决于 servlet 实现。看
Tomcat POST 参数限制(默认 2mb)
设置 Jetty POST 参数限制(默认 <200k)
GAE servlet 容器基于 Jetty 6,但具体的实现限制是 AFAIK 未知的。谷歌伙计们,有人知道最大 POST 参数大小的具体数字吗?