You can specify an expiration date, using the
setMaxTime(int) method of
javax.servlet.http.Cookie. Specifying a expiration time of
zero will void
the cookie, and delete it from the browser.
// Expire the cookie immediately
cookie.setMaxTime( 0 );
// Send cookie back to the browser to void it
response.addCookie(cookie);