gpt4 book ai didi

java - 在 URLConnection 中设置 header 的正确方法是什么?

转载 作者:IT老高 更新时间:2023-10-28 21:00:59 28 4
gpt4 key购买 nike

我的代码如下:

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 之前设置 header 可以吗?我的 header 会被发送,还是服务器会看到默认的 URLConnection 的用户代理(如果有)?

最佳答案

必须在获得 InputStream 之前设置标题 - 如果连接已经打开,则会抛出 IllegalStateException .

具体到 User-Agent header ,如果已设置则应发送。

URLConnection JavaDoc。

关于java - 在 URLConnection 中设置 header 的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/331538/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com