CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Java cookie?

  1. #1
    Join Date
    Apr 1999
    Posts
    48

    Java cookie?

    Does anybody know how to set and read cookies in Java? Thanks.


  2. #2
    Join Date
    Dec 1999
    Location
    Chonghe, Taipei County, Taiwan, R.O.C.
    Posts
    231

    Re: Java cookie?

    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


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured