Online Java Compiler By
JavaTpoint.com
import java.net.HttpCookie; public class JavaHttpCookieGetDomainExample1 { public static void main(String[] args) { HttpCookie object = new HttpCookie("Parent", "1"); object.setDomain("www.google.com"); //Returns the domain name. System.out.println("The domain name is given as: "+object.getDomain()); } }
Output