<p>I have a file "multiplevalues.jsp"<br> I want to print the name and values of cookies, but it only ever prints one cookie<br> information. I know I have more than one cookie.<br> <br> Question: Does IE store cookies in Windows\Temporary Interner files?<br> <br> If so than I diffinitely have more than one cookie in this folder?<br> <br> If not where is the cookie being stored?<br> I am using:<br> Windows OS, IE browser, Tomcat Webserver.<br> <br> <br> <br> <html><br> ; <head><br> <title> Read multiple values from cookie </title><br> </head><br> <body><br > <br> The following cookies has been located on your computer:<br> <br> <br> <% <br> Cookie[] cookiesFromClient = request.getCookies();<br> <br> for ( int i = 0; i < cookiesFromClient.length; i++ )<br> {<br> out.print(cookiesFromClient.getName() + " has a vlaue of ");<br> out.print(cookiesFromClient.getValue() + "<br>");<br> }<br> %><br> <br> </body><br> </html><br& gt; ------------------------------------------------------------------<br> Here is the output:<br> <br> The following cookies has been located on your computer: <br> JSESSIONID has a vlaue of q7ewamk7u1</p>