Testing:
return request.getCookies() == null;
is not an appropriate way test. Is there another way?
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);
}
}
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>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With