小结
介绍了如何在HttpServletRequest中对Cookie的进行设置和获取。
问题和解决
在服务器端的HttpServletRequest中对Cookie的进行设置后,客户端在接下来的请求中会携带此设置好的Cookie,所以可以在服务器端接收请求时提取这个Cookie的值。
服务器端设置Cookie值 :
String cookieName = "session-id-cookie";
String cookieValue = httpSession.getId();
Cookie SessionIDCookie = new Cookie(cookieName, cookieValue);
httpServletResponse.addCookie(SessionIDCookie);
服务器端提取Cookie值 :文章来源:https://www.toymoban.com/news/detail-699336.html
Cookie[] cookies = httpServletRequest.getCookies();
if (cookies != null) {
for (Cookie cookie : cookies) {
if (cookie.getName().equals("session-id-cookie")) {
System.out.println("=====Cookie=====" + cookie.getValue().toString() + "=====Cookie=====");
logger.info("=====Cookie=====" + cookie.getValue().toString() + "=====Cookie=====");
}
}
参考
Stackoverflow: Get cookie value in java文章来源地址https://www.toymoban.com/news/detail-699336.html
到了这里,关于有关使用HttpServletRequest的Cookie的设置和获取的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!