Java:setRequestMethod 不起作用
我有代码的下一部分:
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。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置
URLConnection #setDoOutput()
为true
表示您将通过URLConnection#getOutputStream()
。这与 GET 结合使用是不可能的(它需要请求 URL 中的请求参数),因此请求方法将隐式设置为 POST。如果您不需要向请求正文写入任何数据,则只需删除该行即可。无论如何,它默认为
false
(因此 GET)。另请参阅:
URLConnection
来触发和处理 HTTP 请求?Setting the
URLConnection#setDoOutput()
totrue
means that you're about to write request data to the request body byURLConnection#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:
URLConnection
to fire and handle HTTP requests?