Why setMaxAge() and getMaxAge() methods are used in Cookies?

Answers were Sorted based on User's Feedback



Why setMaxAge() and getMaxAge() methods are used in Cookies?..

Answer / abhijitbaji

setMaxAge(), this function sets the maximum age of the
cookie.
The value of the maximum age is the lifetime of the cookie
in seconds.
It is a decimal non-negative integer.
When the age is greater than seconds of maximum age, the
client SHOULD discard the cookie.
A value of zero means the cookie SHOULD be discarded
immediately.


getMaxAge(), this function can be used to retrieve the
maximum age of the cookie.

Is This Answer Correct ?    10 Yes 1 No

Why setMaxAge() and getMaxAge() methods are used in Cookies?..

Answer / tulasi vani

Cookies are created as

Cookie c=new Cookie(name,value);
c.setMaxAge(milliseconds);

int getMaxAge() returns the maximum age of the cookie.

If the value is set to zero it will be deleted
immediately.If the age is a -ve number it states that the
age of the cookie is confined to that particular request
only.

Is This Answer Correct ?    2 Yes 6 No

Post New Answer

More Servlets Interview Questions

Hi Friends, Can we make any method thread safe withour synchronized keyword?

2 Answers  


What are the disadvantages of storing session state in cookies?

0 Answers  


What is getservletcontext?

0 Answers  


How can a servlet refresh automatically if some new data has entered the database?

3 Answers   Citi Bank, CitiGroup, IBM, Satyam,


What is a servlet-to-servlet communcation?

0 Answers  


What is servlet? Explain

0 Answers  


How do you communicate in between Applets and Servlets?

0 Answers  


How to maintain security in servlets?

2 Answers  


What are life cycle methods of a servlet?

0 Answers  


What is load-on-startup in servlet?

0 Answers  


What is servlet container?

0 Answers  


What's the difference between servlets and applets?

0 Answers  


Categories