|
||||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object gboat2.base.bridge.util.http.CookieUtil
public class CookieUtil
Cookie 工具类
构造方法摘要 | |
---|---|
CookieUtil()
|
方法摘要 | |
---|---|
static void |
addCookie(String name,
String value,
String domain,
int maxage,
javax.servlet.http.HttpServletResponse response)
往根下面存一个cookie |
static void |
addCookie(String name,
String value,
String domain,
int maxage,
String path,
javax.servlet.http.HttpServletResponse response)
添加cookie |
static String |
getCookie(javax.servlet.http.HttpServletRequest request,
String name)
从cookie值返回cookie值,如果没有返回 null |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
public CookieUtil()
方法详细信息 |
---|
public static void addCookie(String name, String value, String domain, int maxage, String path, javax.servlet.http.HttpServletResponse response)
name
- cookie的keyvalue
- cookie的valuedomain
- domainpath
- pathmaxage
- 最长存活时间 单位为秒response
- 响应对象public static void addCookie(String name, String value, String domain, int maxage, javax.servlet.http.HttpServletResponse response)
name
- cookie的keyvalue
- cookie的valuedomain
- domainmaxage
- 最长存活时间 单位为秒response
- 响应对象public static String getCookie(javax.servlet.http.HttpServletRequest request, String name)
request
- 请求对象name
- 参数name
|
||||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |