怎么设置 cookie 呢 ?

发布于 2021-12-01 16:06:10 字数 104 浏览 713 评论 2

HttpComponents  改动相当大

新版的不知道咋个设置 cookie


@红薯  

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

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

发布评论

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

评论(2

梦中楼上月下 2021-12-04 21:38:55
public static void main(String[] args) throws Exception {
		String url = "http://localhost/wp/";
		HttpPost get = new HttpPost(url);

		CookieStore cookieStore = new BasicCookieStore();
		// Populate cookies if needed
		BasicClientCookie cookie = new BasicClientCookie("wordpress_1233097993469c07c80a9cb529880b71", "admin%7C1382592376%7Cfb75237b2f52e29332627a77575438a2");
		cookie.setVersion(0);
		cookie.setDomain("localhost");
		cookie.setPath("/");
		cookieStore.addCookie(cookie);
		// Set the store
		CloseableHttpClient client = HttpClients.custom()
		        .setDefaultCookieStore(cookieStore)
		        .build();
		
		HttpResponse resp = client.execute(get);

		HttpEntity enti = resp.getEntity();
		InputStream is = enti.getContent();
		BufferedReader in = new BufferedReader(new InputStreamReader(is));
		StringBuffer buffer = new StringBuffer();
		System.out.println(EntityUtils.toString(enti));
		
		
		get.abort();
		client.close();

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