Online Java Compiler By
JavaTpoint.com
import java.net.HttpCookie; public class JavaHttpCookieSetDomainExample3 { public static void main(String[] args) { HttpCookie cookie = new HttpCookie("Employee", "4"); //Specifies the domain through which the cookie can be presented. cookie.setDomain(null); //Returns null if there is no domain name present. System.out.println("The domain name is given as: "+cookie.getDomain()); } }
Output