Online Java Compiler By
JavaTpoint.com
import java.net.HttpCookie; public class JavaHttpCookieSetDomainExample1 { public static void main(String[] args) { HttpCookie cookie = new HttpCookie("Student", "101"); // Specifies the domain through which the cookie can be presented. cookie.setDomain("www.google.com"); System.out.println("The domain name is given as: "+cookie.getDomain()); } }
Output