Java CookieManager() Constructor
Syntax
CookieManager() constructor from CookieManager has the following syntax.
public CookieManager()
Example
In the following code shows how to use CookieManager.CookieManager() constructor.
/* w w w .j ava 2 s . c o m*/
import java.net.CookieHandler;
import java.net.CookieManager;
import java.net.CookieStore;
import java.net.HttpCookie;
import java.net.URL;
import java.net.URLConnection;
import java.util.List;
public class Main {
public static void main(String args[]) throws Exception {
String urlString = "http://google.com";
CookieManager manager = new CookieManager();
CookieHandler.setDefault(manager);
URL url = new URL(urlString);
URLConnection connection = url.openConnection();
Object obj = connection.getContent();
url = new URL(urlString);
connection = url.openConnection();
obj = connection.getContent();
CookieStore cookieJar = manager.getCookieStore();
List<HttpCookie> cookies = cookieJar.getCookies();
for (HttpCookie cookie : cookies) {
System.out.println(cookie);
}
}
}
The code above generates the following result.