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"); cookie.setDiscard(false); //Returns the discard attribute of the cookie. System.out.println("Checks the discard attribute of the cookie : "+cookie.getDiscard()); } }
Output