在 URLConnection 中设置标头的正确方法是什么?

发布于 2024-07-10 17:07:56 字数 405 浏览 5 评论 0原文

我的代码如下:

URLConnection cnx = address.openConnection();
cnx.setAllowUserInteraction(false);         
cnx.setDoOutput(true);
cnx.addRequestProperty("User-Agent", 
    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)");
InputStream is = cnx.getInputStream();

如果我在获取InputStream之前设置标头可以吗? 我的标头是否会被发送,或者服务器是否会看到默认的 URLConnection 的用户代理(如果有)?

My code is like the following:

URLConnection cnx = address.openConnection();
cnx.setAllowUserInteraction(false);         
cnx.setDoOutput(true);
cnx.addRequestProperty("User-Agent", 
    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)");
InputStream is = cnx.getInputStream();

Is it ok if I set the headers before I get the InputStream? Will my header be sent, or will the server see the default URLConnection's user-agent ( if any ) ?

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

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

发布评论

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

评论(3

诠释孤独 2024-07-17 17:07:56

在使 InputStream 产生任何影响之前,必须设置标头 - 如果连接已打开,则会抛出 IllegalStateException

具体就 User-Agent 标头而言,如果已设置,则应发送该标头。

请参阅 URLConnection JavaDoc。

The headers must be set prior to getting the InputStream to have any affect - an IllegalStateException will be thrown if the connection is already open.

As far as the User-Agent header specifically, it should be sent if it has been set.

See the URLConnection JavaDoc.

能否归途做我良人 2024-07-17 17:07:56

要回答这个问题,代码是正确的。 当 getInputStream() 时,HTTP get 被发送到目标服务器。

关于用户代理的旁注,如果您不设置它,URLConnection 无论如何都会发送默认的,即:

User-Agent: Java/1.6.0_24 (varies depending on your java version)

To answer the question, the code is correct. The moment getInputStream(), an HTTP get is sent to the target server.

A side-note on user-agent, if you don't set it, URLConnection will send the default one anyway, which is:

User-Agent: Java/1.6.0_24 (varies depending on your java version)
云归处 2024-07-17 17:07:56

我建议不要使用低级构造,例如 URLConnection。 有很多用于发送 HTTP 请求的库,其中最著名的是 Apache HTTP Client。

I'd advise against using low-level constructs such as URLConnection. There are plenty of libraries for sending HTTP requests, with the most prominent being Apache HTTP Client.

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