Online Java Compiler By
JavaTpoint.com
import java.net.HttpCookie; public class JavaHttpCookieGetCommentURLExample1 { public static void main(String[] args) { HttpCookie cookie = new HttpCookie("Employee", "4"); cookie.setCommentURL("193.18.4.1"); System.out.println("The comment URL is given as: "+cookie.getCommentURL()); } }
Output