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