Package org.jsoup.helper
Class HttpConnection.Request
java.lang.Object
org.jsoup.helper.HttpConnection.Request
- All Implemented Interfaces:
-
Connection.Base<Connection.Request>
,Connection.Request
- Enclosing class:
- HttpConnection
-
Method Summary
Modifier and TypeMethodDescriptionaddHeader
(String name, @Nullable String value) Add a header.@Nullable RequestAuthenticator
auth()
Get the RequestAuthenticator, if any, that will be used on this request.auth
(@Nullable RequestAuthenticator authenticator) Set the authenticator to use for this request.String
cookie
(String name) Get a cookie value by name from this request/response.cookie
(String name, String value) Set a cookie in this request/response.Map<String,
String> cookies()
Retrieve all of the request/response cookies as a mapCollection<Connection.KeyVal>
data()
Get all of the request's data parametersdata
(Connection.KeyVal keyval) Add a data parameter to the requestboolean
Get the current followRedirects configuration.followRedirects
(boolean followRedirects) Configures the request to (not) follow server redirects.boolean
hasCookie
(String name) Check if a cookie is presentboolean
hasHeader
(String name) Check if a header is presentboolean
hasHeaderWithValue
(String name, String value) Test if the request has a header with this value (case insensitive).String
header
(String name) Get the value of a header.header
(String name, String value) Set a header.Map<String,
String> headers()
Retrieve all of the request/response header names and corresponding values as a map.List<String>
headers
(String name) Get the values of a header.boolean
Get the current ignoreContentType configuration.ignoreContentType
(boolean ignoreContentType) Configures the request to ignore the Content-Type of the response.boolean
Get the current ignoreHttpErrors configuration.ignoreHttpErrors
(boolean ignoreHttpErrors) Configures the request to ignore HTTP errors in the response.int
Get the maximum body size, in bytes.maxBodySize
(int bytes) Update the maximum body size, in bytes.method()
Get the request method, which defaults toGET
method
(Connection.Method method) Set the request methodMap<String,
List<String>> Retreive all of the headers, keyed by the header name, and with a list of values per header.parser()
Get the current parser to use when parsing the document.Specify the parser to use when parsing the document.String
Gets the post data character set for x-www-form-urlencoded post datapostDataCharset
(String charset) Sets the post data character set for x-www-form-urlencoded post dataproxy()
Get the proxy used for this request.Update the proxy for this request.proxy
(String host, int port) Set the HTTP proxy to use for this request.removeCookie
(String name) Remove a cookie by nameremoveHeader
(String name) Remove headers by name.String
Get the current request body.requestBody
(@Nullable String body) Set a POST (or PUT) request body.Get the current custom SSL socket factory, if any.void
sslSocketFactory
(SSLSocketFactory sslSocketFactory) Set a custom SSL socket factory.int
timeout()
Get the request timeout, in milliseconds.timeout
(int millis) Update the request timeout.url()
Get the URL of this Request or Response.Set the URLMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.jsoup.Connection.Base
addHeader, cookie, cookie, cookies, hasCookie, hasHeader, hasHeaderWithValue, header, header, headers, headers, method, method, multiHeaders, removeCookie, removeHeader, url, url
-
Method Details
-
proxy
Description copied from interface:Connection.Request
Get the proxy used for this request.- Specified by:
-
proxy
in interfaceConnection.Request
- Returns:
-
the proxy;
null
if not enabled.
-
proxy
Description copied from interface:Connection.Request
Update the proxy for this request.- Specified by:
-
proxy
in interfaceConnection.Request
- Parameters:
-
proxy
- the proxy ot use;null
to disable. - Returns:
- this Request, for chaining
-
proxy
Description copied from interface:Connection.Request
Set the HTTP proxy to use for this request.- Specified by:
-
proxy
in interfaceConnection.Request
- Parameters:
-
host
- the proxy hostname -
port
- the proxy port - Returns:
- this Connection, for chaining
-
timeout
public int timeout()Description copied from interface:Connection.Request
Get the request timeout, in milliseconds.- Specified by:
-
timeout
in interfaceConnection.Request
- Returns:
- the timeout in milliseconds.
-
timeout
Description copied from interface:Connection.Request
Update the request timeout.- Specified by:
-
timeout
in interfaceConnection.Request
- Parameters:
-
millis
- timeout, in milliseconds - Returns:
- this Request, for chaining
-
maxBodySize
public int maxBodySize()Description copied from interface:Connection.Request
Get the maximum body size, in bytes.- Specified by:
-
maxBodySize
in interfaceConnection.Request
- Returns:
- the maximum body size, in bytes.
-
maxBodySize
Description copied from interface:Connection.Request
Update the maximum body size, in bytes.- Specified by:
-
maxBodySize
in interfaceConnection.Request
- Parameters:
-
bytes
- maximum body size, in bytes. - Returns:
- this Request, for chaining
-
followRedirects
public boolean followRedirects()Description copied from interface:Connection.Request
Get the current followRedirects configuration.- Specified by:
-
followRedirects
in interfaceConnection.Request
- Returns:
- true if followRedirects is enabled.
-
followRedirects
Description copied from interface:Connection.Request
Configures the request to (not) follow server redirects. By default this is true.- Specified by:
-
followRedirects
in interfaceConnection.Request
- Parameters:
-
followRedirects
- true if server redirects should be followed. - Returns:
- this Request, for chaining
-
ignoreHttpErrors
public boolean ignoreHttpErrors()Description copied from interface:Connection.Request
Get the current ignoreHttpErrors configuration.- Specified by:
-
ignoreHttpErrors
in interfaceConnection.Request
- Returns:
- true if errors will be ignored; false (default) if HTTP errors will cause an IOException to be thrown.
-
sslSocketFactory
Description copied from interface:Connection.Request
Get the current custom SSL socket factory, if any.- Specified by:
-
sslSocketFactory
in interfaceConnection.Request
- Returns:
- custom SSL socket factory if set, null otherwise
-
sslSocketFactory
Description copied from interface:Connection.Request
Set a custom SSL socket factory.- Specified by:
-
sslSocketFactory
in interfaceConnection.Request
- Parameters:
-
sslSocketFactory
- SSL socket factory
-
ignoreHttpErrors
Description copied from interface:Connection.Request
Configures the request to ignore HTTP errors in the response.- Specified by:
-
ignoreHttpErrors
in interfaceConnection.Request
- Parameters:
-
ignoreHttpErrors
- set to true to ignore HTTP errors. - Returns:
- this Request, for chaining
-
ignoreContentType
public boolean ignoreContentType()Description copied from interface:Connection.Request
Get the current ignoreContentType configuration.- Specified by:
-
ignoreContentType
in interfaceConnection.Request
- Returns:
- true if invalid content-types will be ignored; false (default) if they will cause an IOException to be thrown.
-
ignoreContentType
Description copied from interface:Connection.Request
Configures the request to ignore the Content-Type of the response.- Specified by:
-
ignoreContentType
in interfaceConnection.Request
- Parameters:
-
ignoreContentType
- set to true to ignore the content type. - Returns:
- this Request, for chaining
-
data
Description copied from interface:Connection.Request
Add a data parameter to the request- Specified by:
-
data
in interfaceConnection.Request
- Parameters:
-
keyval
- data to add. - Returns:
- this Request, for chaining
-
data
Description copied from interface:Connection.Request
Get all of the request's data parameters- Specified by:
-
data
in interfaceConnection.Request
- Returns:
- collection of keyvals
-
requestBody
Description copied from interface:Connection.Request
Set a POST (or PUT) request body. Useful when a server expects a plain request body, not a set of URL encoded form key/value pairs. E.g.:Jsoup.connect(url) .requestBody(json) .header("Content-Type", "application/json") .post();
- Specified by:
-
requestBody
in interfaceConnection.Request
- Parameters:
-
body
- to use as the request body. Set to null to clear a previously set body. - Returns:
- this Request, for chaining
-
requestBody
public String requestBody()Description copied from interface:Connection.Request
Get the current request body.- Specified by:
-
requestBody
in interfaceConnection.Request
- Returns:
- null if not set.
-
parser
Description copied from interface:Connection.Request
Specify the parser to use when parsing the document.- Specified by:
-
parser
in interfaceConnection.Request
- Parameters:
-
parser
- parser to use. - Returns:
- this Request, for chaining
-
parser
Description copied from interface:Connection.Request
Get the current parser to use when parsing the document.- Specified by:
-
parser
in interfaceConnection.Request
- Returns:
- current Parser
-
postDataCharset
Description copied from interface:Connection.Request
Sets the post data character set for x-www-form-urlencoded post data- Specified by:
-
postDataCharset
in interfaceConnection.Request
- Parameters:
-
charset
- character set to encode post data - Returns:
- this Request, for chaining
-
postDataCharset
public String postDataCharset()Description copied from interface:Connection.Request
Gets the post data character set for x-www-form-urlencoded post data- Specified by:
-
postDataCharset
in interfaceConnection.Request
- Returns:
- character set to encode post data
-
auth
Description copied from interface:Connection.Request
Set the authenticator to use for this request. SeeConnection.auth(authenticator)
for examples and implementation notes.- Specified by:
-
auth
in interfaceConnection.Request
- Parameters:
-
authenticator
- the authenticator - Returns:
- this Request, for chaining.
-
auth
Description copied from interface:Connection.Request
Get the RequestAuthenticator, if any, that will be used on this request.- Specified by:
-
auth
in interfaceConnection.Request
- Returns:
-
the RequestAuthenticator, or
null
if not set
-
url
Description copied from interface:Connection.Base
Get the URL of this Request or Response. For redirected responses, this will be the final destination URL.- Specified by:
-
url
in interfaceConnection.Base<T extends Connection.Base<T>>
- Returns:
- URL
-
url
Description copied from interface:Connection.Base
Set the URL- Specified by:
-
url
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
url
- new URL - Returns:
- this, for chaining
-
method
Description copied from interface:Connection.Base
Get the request method, which defaults toGET
- Specified by:
-
method
in interfaceConnection.Base<T extends Connection.Base<T>>
- Returns:
- method
-
method
Description copied from interface:Connection.Base
Set the request method- Specified by:
-
method
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
method
- new method - Returns:
- this, for chaining
-
header
public String header(String name) Description copied from interface:Connection.Base
Get the value of a header. If there is more than one header value with the same name, the headers are returned comma separated, per rfc2616-sec4.Header names are case-insensitive.
- Specified by:
-
header
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
name
- name of header (case-insensitive) - Returns:
- value of header, or null if not set.
- See Also:
-
addHeader
Description copied from interface:Connection.Base
Add a header. The header will be added regardless of whether a header with the same name already exists.For compatibility, if the content of the header includes text that cannot be represented by ISO-8859-1, then it should be encoded first per RFC 2047.
- Specified by:
-
addHeader
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
name
- Name of new header -
value
- Value of new header - Returns:
- this, for chaining
-
headers
public List<String> headers(String name) Description copied from interface:Connection.Base
Get the values of a header.- Specified by:
-
headers
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
name
- header name, case-insensitive. - Returns:
- a list of values for this header, or an empty list if not set.
-
header
Description copied from interface:Connection.Base
Set a header. This method will overwrite any existing header with the same case-insensitive name. If there is more than one value for this header, this method will update the first matching header.For compatibility, if the content of the header includes text that cannot be represented by ISO-8859-1, then it should be encoded first per RFC 2047.
- Specified by:
-
header
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
name
- Name of header -
value
- Value of header - Returns:
- this, for chaining
- See Also:
-
hasHeader
public boolean hasHeader(String name) Description copied from interface:Connection.Base
Check if a header is present- Specified by:
-
hasHeader
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
name
- name of header (case-insensitive) - Returns:
- if the header is present in this request/response
-
hasHeaderWithValue
public boolean hasHeaderWithValue(String name, String value) Test if the request has a header with this value (case insensitive).- Specified by:
-
hasHeaderWithValue
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
name
- header name (case-insensitive) -
value
- value (case-insensitive) - Returns:
- if the header and value pair are set in this req/res
-
removeHeader
Description copied from interface:Connection.Base
Remove headers by name. If there is more than one header with this name, they will all be removed.- Specified by:
-
removeHeader
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
name
- name of header to remove (case-insensitive) - Returns:
- this, for chaining
-
headers
public Map<String,String> headers()Description copied from interface:Connection.Base
Retrieve all of the request/response header names and corresponding values as a map. For headers with multiple values, only the first header is returned.Note that this is a view of the headers only, and changes made to this map will not be reflected in the request/response object.
- Specified by:
-
headers
in interfaceConnection.Base<T extends Connection.Base<T>>
- Returns:
- headers
- See Also:
-
multiHeaders
public Map<String,List<String>> multiHeaders()Description copied from interface:Connection.Base
Retreive all of the headers, keyed by the header name, and with a list of values per header.- Specified by:
-
multiHeaders
in interfaceConnection.Base<T extends Connection.Base<T>>
- Returns:
- a list of multiple values per header.
-
cookie
public String cookie(String name) Description copied from interface:Connection.Base
Get a cookie value by name from this request/response.Response objects have a simplified cookie model. Each cookie set in the response is added to the response object's cookie key=value map. The cookie's path, domain, and expiry date are ignored.
- Specified by:
-
cookie
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
name
- name of cookie to retrieve. - Returns:
- value of cookie, or null if not set
-
cookie
Description copied from interface:Connection.Base
Set a cookie in this request/response.- Specified by:
-
cookie
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
name
- name of cookie -
value
- value of cookie - Returns:
- this, for chaining
-
hasCookie
public boolean hasCookie(String name) Description copied from interface:Connection.Base
Check if a cookie is present- Specified by:
-
hasCookie
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
name
- name of cookie - Returns:
- if the cookie is present in this request/response
-
removeCookie
Description copied from interface:Connection.Base
Remove a cookie by name- Specified by:
-
removeCookie
in interfaceConnection.Base<T extends Connection.Base<T>>
- Parameters:
-
name
- name of cookie to remove - Returns:
- this, for chaining
-
cookies
public Map<String,String> cookies()Description copied from interface:Connection.Base
Retrieve all of the request/response cookies as a map- Specified by:
-
cookies
in interfaceConnection.Base<T extends Connection.Base<T>>
- Returns:
- cookies
-