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