default Connection |
Connection.auth(RequestAuthenticator authenticator) |
Set the authenticator to use for this connection, enabling requests to URLs, and via proxies, that require
authentication credentials.
|
static Connection |
Jsoup.connect(java.lang.String url) |
Creates a new Connection (session), with the defined request URL.
|
Connection |
Connection.cookie(java.lang.String name,
java.lang.String value) |
Set a cookie to be sent in the request.
|
Connection |
Connection.cookies(java.util.Map<java.lang.String,java.lang.String> cookies) |
Adds each of the supplied cookies to the request.
|
Connection |
Connection.cookieStore(java.net.CookieStore cookieStore) |
Provide a custom or pre-filled CookieStore to be used on requests made by this Connection.
|
Connection |
Connection.data(java.lang.String... keyvals) |
Add one or more request key, val data parameter pairs.
|
Connection |
Connection.data(java.lang.String key,
java.lang.String value) |
Add a request data parameter.
|
Connection |
Connection.data(java.lang.String key,
java.lang.String filename,
java.io.InputStream inputStream) |
Add an input stream as a request data parameter.
|
Connection |
Connection.data(java.lang.String key,
java.lang.String filename,
java.io.InputStream inputStream,
java.lang.String contentType) |
Add an input stream as a request data parameter.
|
Connection |
Connection.data(java.util.Collection<Connection.KeyVal> data) |
Adds all of the supplied data to the request data parameters
|
Connection |
Connection.data(java.util.Map<java.lang.String,java.lang.String> data) |
Adds all of the supplied data to the request data parameters
|
Connection |
Connection.followRedirects(boolean followRedirects) |
Configures the connection to (not) follow server redirects.
|
Connection |
Connection.header(java.lang.String name,
java.lang.String value) |
Set a request header.
|
Connection |
Connection.headers(java.util.Map<java.lang.String,java.lang.String> headers) |
Sets each of the supplied headers on the request.
|
Connection |
Connection.ignoreContentType(boolean ignoreContentType) |
Ignore the document's Content-Type when parsing the response.
|
Connection |
Connection.ignoreHttpErrors(boolean ignoreHttpErrors) |
Configures the connection to not throw exceptions when an HTTP error occurs.
|
Connection |
Connection.maxBodySize(int bytes) |
Set the maximum bytes to read from the (uncompressed) connection into the body, before the connection is closed,
and the input truncated (i.e.
|
Connection |
Connection.method(Connection.Method method) |
Set the request method to use, GET or POST.
|
Connection |
Connection.newRequest() |
Creates a new request, using this Connection as the session-state and to initialize the connection settings (which
may then be independently changed on the returned Connection.Request object).
|
default Connection |
Connection.newRequest(java.lang.String url) |
Creates a new request, using this Connection as the session-state and to initialize the connection settings (which
may then be independently changed on the returned Connection.Request object).
|
default Connection |
Connection.newRequest(java.net.URL url) |
Creates a new request, using this Connection as the session-state and to initialize the connection settings (which
may then be independently changed on the returned Connection.Request object).
|
static Connection |
Jsoup.newSession() |
|
Connection |
Connection.parser(Parser parser) |
Provide a specific parser to use when parsing the response to a Document.
|
Connection |
Connection.postDataCharset(java.lang.String charset) |
Set the character-set used to encode for x-www-form-urlencoded post data.
|
Connection |
Connection.proxy(java.lang.String host,
int port) |
Set the HTTP proxy to use for this request.
|
Connection |
Connection.proxy(java.net.Proxy proxy) |
Set the proxy to use for this request.
|
Connection |
Connection.referrer(java.lang.String referrer) |
Set the request referrer (aka "referer") header.
|
Connection |
Connection.request(Connection.Request request) |
Set the connection's request
|
Connection |
Connection.requestBody(java.lang.String body) |
Set a POST (or PUT) request body.
|
Connection |
Connection.response(Connection.Response response) |
Set the connection's response
|
Connection |
Connection.sslSocketFactory(javax.net.ssl.SSLSocketFactory sslSocketFactory) |
Set custom SSL socket factory
|
Connection |
Connection.timeout(int millis) |
Set the total request timeout duration.
|
Connection |
Connection.url(java.lang.String url) |
Set the request URL to fetch.
|
Connection |
Connection.url(java.net.URL url) |
Set the request URL to fetch.
|
Connection |
Connection.userAgent(java.lang.String userAgent) |
Set the request user-agent header.
|