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

How to set a cookie that is persisted only for the duration fo the clients session?

1 Answers  


What is cgi?

0 Answers  


What is ServletContext() and what is its use?

9 Answers   Prime Technology, TCS,


What do you mean by servlet context?

0 Answers  


What is the role of the webserver?

4 Answers  






What are the types of protocols supported by httpservlet ?

0 Answers  


What is the need of session tracking in web application?

0 Answers  


what is the difference b/w DispatchAction and LookUpDispatchAction?

1 Answers   Deloitte, iGate, Tech Mahindra,


Why should we go for interservlet communication?

2 Answers  


HTTP tunneling means what?

2 Answers  


What is difference between cookies and httpsession?

0 Answers  


Explain jsessionid?

0 Answers  


Categories