如果浏览器不允许 cookie 怎么办
我正在使用 JSP 和 servlet 开发基于 Web 的应用程序。我正在使用 Cookie 类和 response.getCookie 方法在浏览器中设置 cookie。但我怀疑当浏览器通过浏览器设置不允许cookies时,行为会如何。那么,像getCookie这样的servlet代码会抛出异常吗?行为会如何?
I am working on a web based application with JSP and servlets. I am using the Cookie class and response.getCookie method to set cookies in the browser. But I have a doubt as to how will the behavior be when the browser does-not allow cookies, through browser setting. In this case, will the servlet code like getCookie throw any exception? How will be the behavior ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。它只会返回
null
。就好像用户以前从未访问过您的网站并直接打开该页面一样。
No. It will merely return
null
.Exactly the same as if the user had never visited your site before and directly opened that page.