static Connection |
Jsoup.connect(String url) |
|
Connection |
Connection.cookie(String name,
String value) |
Set a cookie to be sent in the request.
|
Connection |
Connection.cookies(Map<String,String> cookies) |
Adds each of the supplied cookies to the request.
|
Connection |
Connection.data(String... keyvals) |
Add a number of request data parameters.
|
Connection |
Connection.data(String key,
String value) |
Add a request data parameter.
|
Connection |
Connection.data(String key,
String filename,
InputStream inputStream) |
Add an input stream as a request data parameter.
|
Connection |
Connection.data(String key,
String filename,
InputStream inputStream,
String contentType) |
Add an input stream as a request data parameter.
|
Connection |
Connection.data(Collection<Connection.KeyVal> data) |
Adds all of the supplied data to the request data parameters
|
Connection |
Connection.data(Map<String,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(String name,
String value) |
Set a request header.
|
Connection |
Connection.headers(Map<String,String> headers) |
Adds each of the supplied headers to 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 a 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.parser(Parser parser) |
Provide an alternate parser to use when parsing the response to a Document.
|
Connection |
Connection.postDataCharset(String charset) |
Sets the default post data character set for x-www-form-urlencoded post data
|
Connection |
Connection.proxy(String host,
int port) |
Set the HTTP proxy to use for this request.
|
Connection |
Connection.proxy(Proxy proxy) |
Set the proxy to use for this request.
|
Connection |
Connection.referrer(String referrer) |
Set the request referrer (aka "referer") header.
|
Connection |
Connection.request(Connection.Request request) |
Set the connection's request
|
Connection |
Connection.requestBody(String body) |
Set a POST (or PUT) request body.
|
Connection |
Connection.response(Connection.Response response) |
Set the connection's response
|
Connection |
Connection.sslSocketFactory(SSLSocketFactory sslSocketFactory) |
Set custom SSL socket factory
|
Connection |
Connection.timeout(int millis) |
Set the total request timeout duration.
|
Connection |
Connection.url(String url) |
Set the request URL to fetch.
|
Connection |
Connection.url(URL url) |
Set the request URL to fetch.
|
Connection |
Connection.userAgent(String userAgent) |
Set the request user-agent header.
|