Online Java Compiler By
JavaTpoint.com
import java.net.HttpCookie; public class JavaHttpCookieGetPathExample3 { public static void main(String[] args) { HttpCookie cookie = new HttpCookie("Student", "2"); // Return null if there is no path set. System.out.println("The path is given as: "+ cookie.getPath()); } }
Output