Online Java Compiler By
JavaTpoint.com
import java.net.HttpCookie; public class JavaHttpCookieEqualsExample1 { public static void main(String[] args) { HttpCookie cookie1 = new HttpCookie("Student1", "10"); HttpCookie cookie2 = new HttpCookie("Student1", "10"); //Return true if the two HTTP cookies are equal. boolean bool = cookie1.equals(cookie2); if(bool) { System.out.println("Both cookies come from same path and same domain."); } else { System.out.println("Cookies are diiferent."); } } }
Output