How to read a cookie value?

reading a cookie value is pretty straight forward.

cookies are received in the request, so just call cookie.getvalue() to get the value stored in the cookie.


you can use this ready made method to get the value of cookie.

cookie name and the request are the parameters which are to be passed.
the method returns the cookie value as String(null if no cookie is found).



About this entry