Java HttpCookie.getComment()
Syntax
HttpCookie.getComment() has the following syntax.
public String getComment()
Example
In the following code shows how to use HttpCookie.getComment() method.
// w w w .j av a2 s . c o m
import java.net.CookieHandler;
import java.net.CookieManager;
import java.net.CookiePolicy;
import java.net.HttpCookie;
import java.net.URL;
import java.util.List;
public class Main {
public static void main(String[] args) throws Exception {
CookieManager cm = new CookieManager();
cm.setCookiePolicy(CookiePolicy.ACCEPT_ALL);
CookieHandler.setDefault(cm);
new URL("http://google.com").openConnection().getContent();
List<HttpCookie> cookies = cm.getCookieStore().getCookies();
for (HttpCookie cookie : cookies) {
System.out.println(cookie.getComment());
System.out.println();
}
}
}