如果浏览器不允许 cookie 怎么办

发布于 2024-12-07 07:45:55 字数 165 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呆头 2024-12-14 07:45:55

这样的话,像getCookie这样的servlet代码会抛出异常吗?

不会。它只会返回 null

行为会如何?

就好像用户以前从未访问过您的网站并直接打开该页面一样。

In this case, will the servlet code like getCookie throw any exception?

No. It will merely return null.

How will be the behavior ?

Exactly the same as if the user had never visited your site before and directly opened that page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文