java.net.HttpURLConnection |
URLConnectionFactory.createHttpURLConnection(java.net.URL url) |
Utility method to create an HttpURLConnection.
|
java.net.HttpURLConnection |
URLConnectionFactory.createHttpURLConnection(java.net.URL url,
boolean proxy) |
Utility method to create an HttpURLConnection.
|
void |
Downloader.fetchFile(java.net.URL url,
java.io.File outputPath) |
Retrieves a file from a given URL and saves it to the outputPath.
|
void |
Downloader.fetchFile(java.net.URL url,
java.io.File outputPath,
boolean useProxy) |
Retrieves a file from a given URL and saves it to the outputPath.
|
void |
Downloader.fetchFile(java.net.URL url,
java.io.File outputPath,
boolean useProxy,
java.lang.String userKey,
java.lang.String passwordKey) |
Retrieves a file from a given URL using an ad-hoc created CredentialsProvider if needed
and saves it to the outputPath.
|
java.lang.String |
Downloader.postBasedFetchContent(java.net.URI url,
java.lang.String payload,
org.apache.hc.core5.http.ContentType payloadType,
java.util.List<org.apache.hc.core5.http.Header> hdr) |
Posts a payload to the URL and returns the response as a string.
|