Online Java Compiler By
JavaTpoint.com
import java.net.HttpCookie; public class JavaHttpCookieSetMaxAgeExample1 { public static void main(String[] args) { HttpCookie cookie = new HttpCookie("Employee", "2"); // Sets the maximum age of the cookie within seconds. cookie.setMaxAge(5000); System.out.println("The maximum age of the cookie is given as: "+cookie.getMaxAge()); } }
Output