HttpPost 一旦超过一定大小就不发送参数

发布于 2024-11-15 14:37:58 字数 288 浏览 3 评论 0原文

代码如下:

HttpClient client = new HttpClient();
PostMethod method = new PostMethod(SERVER_URL);
NameValuePair[] data = {
                new NameValuePair("html", html)
};
method.setRequestBody(data);

一旦 html var 的值超过一定大小,接收 URL 的所有参数都会变为 null。有什么想法吗?

Here is the code:

HttpClient client = new HttpClient();
PostMethod method = new PostMethod(SERVER_URL);
NameValuePair[] data = {
                new NameValuePair("html", html)
};
method.setRequestBody(data);

Once the value for the html var goes over a certain size all params become null for the receiving URL. Any ideas why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

再见回来 2024-11-22 14:37:58

这听起来不像是客户端的错误。我怀疑您可能达到了服务器端限制;例如,在 Web 容器配置中指定的请求大小限制...或前端。

This doesn't sound like a fault on the client side. I suspect that you may be hitting a server-side limit; e.g. a request-size limit specified in the web container configuration ... or a front-end.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文