Online Java Compiler By
JavaTpoint.com
import java.net.HttpCookie; public class JavaHttpCookieSetCommentURLExample1 { public static void main(String[] args) { HttpCookie cookie = new HttpCookie("Employee", "151"); cookie.setCommentURL("123.45.33.21"); // Specifies a comment URL which describes the purpose of the cookie System.out.println("The comment URL is given as : "+cookie.getCommentURL()); } }
Output