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