Online Java Compiler By
JavaTpoint.com
import java.net.HttpCookie; public class JavaHttpCookieGetCommentExample2 { public static void main(String[] args) { HttpCookie object = new HttpCookie("Manger", "1"); object.setComment("Mangaer manages all the records of the factory in a sequential order. "); System.out.println("Comment:"+ object.getComment()); } }
Output