JSP Response.addCookie()方法:添加cookie对象
该方法用于添加 cookie 对象,用来保存客户端的用户信息。
语法:
addCookie(Cookie cookie)
参数说明:
- cookie:要添加的 cookie 对象。
示例
向 cookie 对象中添加信息,关键代码如下:
<% Cookie cookie = new Cookie("user","lzw"); response.addCookie(cookie); %>
典型应用
本示例使用 addCookie 方法将信息保存在 cookie 对象中,并获取 cookie 中信息输出在页面中,运行结果如图所示。
发表评论