Online Java Compiler By
JavaTpoint.com
import java.net.HttpCookie; public class JavaHttpCookieSetCommentExample2 { public static void main(String[] args) { HttpCookie cookie = new HttpCookie("Student", "121"); // Specifies a comment which describes the purpose of the cookie. cookie.setComment("setComment() specifies a comment which describes the purpose of the cookie."); System.out.println("Comment : "+cookie.getComment()); } }
Output