Java CookieStore.removeAll()
Syntax
CookieStore.removeAll() has the following syntax.
boolean removeAll()
Example
In the following code shows how to use CookieStore.removeAll() method.
//w w w . ja v a2 s. c o m
import java.net.CookieHandler;
import java.net.CookieManager;
import java.net.CookiePolicy;
import java.net.CookieStore;
import java.net.URL;
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();
CookieStore cookieStore = cm.getCookieStore();
cookieStore.removeAll();
}
}