在 URL 连接中设置标头的正确方法是什么?
2022-09-02 13:16:20
我的代码如下所示:
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();
如果我在获得之前设置标头可以吗?我的标头会被发送,还是服务器会看到默认的 user-agent(如果有)?InputStream
URLConnection