import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class CookieUtils {
/**
* Returns the specified cookie, or <tt>null</tt> if the cookie
* does not exist. Note: because of the way that cookies are implemented
* it's possible for multiple cookies with the same name to exist (but with
* different domain values). This method will return the first cookie that
* has a name match.
*
* @param request the servlet request.
* @param name the name of the cookie.
* @return the Cookie object if it exists, otherwise <tt>null</tt>.
*/
public static Cookie getCookie(HttpServletRequest request, String name) {
Cookie cookies[] = request.getCookies();
// Return null if there are no cookies or the name is invalid.
if (cookies == null || name == null || name.length() == 0) {
return null;
}
// Otherwise, we do a linear scan for the cookie.
Cookie cookie = null;
for (int i = 0; i < cookies.length; i++) {
// If the current cookie name matches the one we're looking for, we've
// found a matching cookie.
if (cookies[i].getName().equals(name)) {
cookie = cookies[i];
// The best matching cookie will be the one that has the correct
// domain name. If we've found the cookie with the correct domain name,
// return it. Otherwise, we'll keep looking for a better match.
if (request.getServerName().equals(cookie.getDomain())) {
break;
}
}
}
return cookie;
}
/**
* Deletes the specified cookie.
*
* @param request the servlet request.
* @param response the servlet response.
* @param cookie the cookie object to be deleted.
*/
public static void deleteCookie(HttpServletRequest request, HttpServletResponse response, Cookie cookie){
if (cookie != null) {
// Invalidate the cookie
String path = request.getContextPath() == null ? "/" : request.getContextPath();
if ("".equals(path)) {
path = "/";
}
cookie.setPath(path);
cookie.setValue("");
cookie.setMaxAge(0);
response.addCookie(cookie);
}
}
/**
* Stores a value in a cookie. By default this cookie will persist for 30 days.
*
* @see #setCookie(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,String,String,int)
* @param request the servlet request.
* @param response the servlet response.
* @param name a name to identify the cookie.
* @param value the value to store in the cookie.
*/
public static void setCookie(HttpServletRequest request, HttpServletResponse response, String name, String value) {
// Save the cookie value for 1 month
setCookie(request, response, name, value, 60*60*24*30);
}
/**
* Stores a value in a cookie. This cookie will persist for the amount
* specified in the <tt>saveTime</tt> parameter.
*
* @see #setCookie(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,String,String)
* @param request the servlet request.
* @param response the servlet response.
* @param name a name to identify the cookie.
* @param value the value to store in the cookie.
* @param maxAge the time (in seconds) this cookie should live.
*/
public static void setCookie(HttpServletRequest request, HttpServletResponse response, String name, String value, int maxAge){
// Check to make sure the new value is not null (appservers like Tomcat
// 4 blow up if the value is null).
if (value == null) {
value = "";
}
String path = request.getContextPath() == null ? "/" : request.getContextPath();
if ("".equals(path)) {
path = "/";
}
Cookie cookie = new Cookie(name, value);
cookie.setMaxAge(maxAge);
cookie.setPath(path);
response.addCookie(cookie);
}
}
分享到:
相关推荐
10. `JsonUtils.java`:JSON序列化和反序列化的工具类,可能集成了Jackson、Gson或其它库,用于将Java对象转换成JSON字符串,或者将JSON字符串解析成Java对象。 这些工具类涵盖了网络通信、文件操作、数据库交互、...
- StringUtils: 字符串操作工具类。 - Excel: 导入导出工具类, 参考用户导入导出例子。 - Reflections: Java对象操作反射工具类。 - BeanMapper: Bean与Bean、Bean与Collection之间的互相转换。 - JaxbMapper: ...
UploadUtil.class处理文件上传,CookieUtils.class处理Cookie相关操作,PageSet.class管理分页设置,JdbcUtils.class提供了JDBC操作的工具方法,StringUtils.class和JsUtils.class分别用于处理字符串和JavaScript...
`delCookie()`方法通过遍历请求中的所有Cookie,找到名称为`USER_COOKIE`的Cookie,将其值设为空字符串,并将最大生存时间设置为0,这样浏览器在接收到这个更新后的Cookie时会立即将其删除。 除了上述的代码示例,...
将请求体中的JSON字符串绑定到相应的bean上 修改 Controller @PutMapping service updateByPrimaryKey 删除 Controller @DeleteMapping @PathVariable Param 规格组id查询规格 url:params?gid=14 @...