Java:setRequestMethod 不起作用

发布于 2024-10-30 21:02:17 字数 401 浏览 1 评论 0 原文

我有代码的下一部分:

dCon = (HttpURLConnection) new URL(torrentFileDownloadLink).openConnection();
dCon.setRequestProperty("Cookie", "uid=" + cookies.get("uid") + ";pass=" + cookies.get("pass"));
dCon.setRequestMethod("GET");
dCon.setConnectTimeout(30000);
dCon.setDoOutput(true);

但是 Wireshark 显示请求方法是“POST”。我做错了什么或者这只是一个错误?顺便说一句,getRequestMethod 说该方法是“GET”,但实际上它是 POST。

I have the next part of code:

dCon = (HttpURLConnection) new URL(torrentFileDownloadLink).openConnection();
dCon.setRequestProperty("Cookie", "uid=" + cookies.get("uid") + ";pass=" + cookies.get("pass"));
dCon.setRequestMethod("GET");
dCon.setConnectTimeout(30000);
dCon.setDoOutput(true);

But Wireshark shows that request method is "POST". What am I doing wrong or this is just a bug? Btw, getRequestMethod say that method is "GET" but in reality it's POST.

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

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

发布评论

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

评论(1

九公里浅绿 2024-11-06 21:02:17

设置 URLConnection #setDoOutput()true 表示您将通过 URLConnection#getOutputStream()。这与 GET 结合使用是不可能的(它需要请求 URL 中的请求参数),因此请求方法将隐式设置为 POST。

如果您不需要向请求正文写入任何数据,则只需删除该行即可。无论如何,它默认为 false (因此 GET)。

另请参阅:

Setting the URLConnection#setDoOutput() to true means that you're about to write request data to the request body by URLConnection#getOutputStream(). This is impossible in combination with GET (which expects the request parameters in the request URL), thus the request method will implicitly be set to POST.

If you don't need to write any data to the request body, then just remove that line. It defaults to false (and thus GET) anyway.

See also:

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