public abstract class CookieHandler extends Object
可以通过执行CookieHandler.setDefault(CookieHandler)来注册由HTTP协议处理程序使用的系统级CookieHandler。 可以通过调用CookieHandler.getDefault()来检索当前注册的CookieHandler。 有关HTTP状态管理的更多信息,请参阅RFC 2965: HTTP State Management Mechanism
Constructor and Description |
---|
CookieHandler() |
Modifier and Type | Method and Description |
---|---|
abstract Map<String,List<String>> |
get(URI uri, Map<String,List<String>> requestHeaders)
从请求标头中指定的uri的cookie缓存获取所有适用的Cookie。
|
static CookieHandler |
getDefault()
获取系统范围的Cookie处理程序。
|
abstract void |
put(URI uri, Map<String,List<String>> responseHeaders)
设置所有适用的Cookie,示例是响应头字段,名为Set-Cookie2,存在于响应头中的cookie缓存中。
|
static void |
setDefault(CookieHandler cHandler)
设置(或取消)系统范围的Cookie处理程序。
|
public static CookieHandler getDefault()
SecurityException
- 如果安全管理员已经安装,否认NetPermission
("getCookieHandler")
setDefault(CookieHandler)
public static void setDefault(CookieHandler cHandler)
cHandler
- HTTP cookie处理程序,或
null
取消设置。
SecurityException
- 如果安全管理器已经安装并且它拒绝了NetPermission
("setCookieHandler")
getDefault()
public abstract Map<String,List<String>> get(URI uri, Map<String,List<String>> requestHeaders) throws IOException
该URI
作为参数传递指定饼干的用途。 特别地,该方案应反映Cookie是否通过http,https发送或在其他上下文中使用,如javascript。 在javascript的情况下,主机部分应反映cookie的目的地或其原点。
考虑到URI
和cookies属性和安全设置来确定应该返回哪些属性,这取决于实现。
HTTP协议实现者应确保在添加与选择cookie相关的所有请求头之后,以及发送请求之前调用此方法。
uri
-
URI
Cookie的预期用途的
URI
requestHeaders
- - 从请求头字段名称映射到表示当前请求标头的字段值的列表
IOException
- 如果发生I / O错误
IllegalArgumentException
- 如果任一参数为空
put(URI, Map)
public abstract void put(URI uri, Map<String,List<String>> responseHeaders) throws IOException
uri
- 一个
URI
,其中饼干来自
responseHeaders
- 从字段名称到表示返回的响应头字段的字段值列表的不可变映射
IOException
- 如果发生I / O错误
IllegalArgumentException
- 如果任一参数为空
get(URI, Map)
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.