Online Java Compiler By
JavaTpoint.com
import java.net.HttpCookie; public class JavaHttpCookieSetDiscardExample1 { public static void main(String[] args) { HttpCookie cookie = new HttpCookie("Employee", "4"); // Specifies whether the given user agent can discard the cookie unconditionally or not. cookie.setDiscard(false); System.out.println("Checks the discard attribute of cookie: "+cookie.getDiscard()); } }
Output