Please send your Questions & Answers or Feedback to "mohan@javabook.org"

How do I use cookies to store session state on the client?


In a servlet, the HttpServletResponse and HttpServletRequest objects passed to method HttpServlet.service() can be used to create cookies on the client and use cookie information transmitted during client requests. JSPs can also use cookies, in scriptlet code or, preferably, from within custom tag code.
  • To set a cookie on the client, use the addCookie() method in class HttpServletResponse. Multiple cookies may be set for the same request, and a single cookie name may have multiple values.
  • To get all of the cookies associated with a single HTTP request, use the getCookies() method of class HttpServletRequest.

Related Posts Plugin for WordPress, Blogger...
Flag Counter