Prentice Hall and Sun Microsystems. Personal use only; do not redistribute.
8.4 Examples of Setting and Reading Cookies
189
Listing 8.2 ShowCookies.java (continued)
"\n" +
"\n" + "Cookie Name\n" + "Cookie Value"); Cookie[] cookies = request.getCookies();Cookie cookie;for(int i=0; icookie = cookies[i];out.println("\n" + "" + cookie.getName() + "\n" + "" + cookie.getValue()); }out.println("