MyCookieStore() throws IOException {
FileStateFactory factory = new FileStateFactory(".evecookies");
if (factory.exists(COOKIESTORE)) {
myState = factory.get(COOKIESTORE);
} else {
myState = factory.create(COOKIESTORE);
}
}
@Override
public void addCookie(Cookie cookie) {