Online Java Compiler By
JavaTpoint.com
import java.net.HttpCookie; public class JavaHttpCookieGetCommentExample1 { public static void main(String[] args) { HttpCookie object = new HttpCookie("Worker", "2"); object.setComment("Worker works in a factory on daily basis pay."); // Return a string containing the comment. System.out.println("Comment:"+ object.getComment()); } }
Output