tags:

views:

1482

answers:

2

Testing:

return request.getCookies() == null;

is not an appropriate way test. Is there another way?

+2  A: 

You generally want to use JavaScript to determine if the client's browser has cookies enabled:

<script type="text/javascript">
var cookieEnabled=(navigator.cookieEnabled)? true : false

//if not IE4+ nor NS6+
if (typeof navigator.cookieEnabled=="undefined" && !cookieEnabled){ 
document.cookie="testcookie"
cookieEnabled=(document.cookie.indexOf("testcookie")!=-1)? true : false
}

//if (cookieEnabled) //if cookies are enabled on client's browser
//do whatever

</script>
digitalsanctum
+4  A: 

Set a cookie and try to read it back.

import javax.servlet.*;
import javax.servlet.http.*;

public class Test4Cookies extends HttpServlet {

  private static final Cookie cookie = new Cookie( "hello" , "world" );
  private static final String paramName = "foo";
  private static final String successURI = "/success.htm";
  private static final String failureURI = "/failure.htm";

  public void doPost(HttpServletRequest req, HttpServletResponse res) {
    if ( req.getParameter( paramName ) == null ) {
       res.addCookie( cookie );
       res.sendRedirect(req.getRequestURI() +"?"+ paramName +"=bar" );
       } 
    else {
       res.sendRedirect
         (( req.getCookies().length == 0 ) ? failureURI : successURI 
       )
    }

  public void doGet(HttpServletRequest req, HttpServletResponse res) {
    doPost(req, res);
    }
}
RealHowTo