Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用以下代码在注销时删除 iPlanetDirectoryPro cookie。
cookie.setMaxAge(0); cookie.setValue(""); response.addCookie(cookie);
但它仍然没有被删除。删除它的其他选项是什么?
您应该使用与创建 cookie 相同的 cookie 域来清除 cookie(并且可能具有相同的路径)。