Does anybody know how to set and read cookies in Java? Thanks.
Printable View
Does anybody know how to set and read cookies in Java? Thanks.
HttpServletResponse.addCookie(Cookie cookie) for add cookie
Cookie[] cookies = HttpServletRequest.getCookies() for get cookies
For more detail information, you may reference the document of
servlet.
good luck
Alfred Wu