zookeeper python接口实例详解
296
2022-12-31
在java中http请求带cookie的例子
如下所示:
String urlPath = "你的请求链接";
String cookie = "要发送的ReloYBoqOcookie";
URL url = new URL(urlPath);
URLConnection conn = url.openConnection();
conn.setRequestProperty("Cookie", cookie);
conn.setDoInput(true);
BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream()));
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = br.readLine()) != null) {
sb.append(line);
}
System.out.println("请求响应结果:"+sb);
conn.setRequestProperty(“Cookie”, cookie) 这句在设置cookie,以上以get请求为例。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~