ytsau
March 1st, 2000, 07:37 AM
Does anybody know how to set and read cookies in Java? Thanks.
|
Click to See Complete Forum and Search --> : Java cookie? ytsau March 1st, 2000, 07:37 AM Does anybody know how to set and read cookies in Java? Thanks. kib63613 March 1st, 2000, 06:19 PM 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 codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |