| Package | Description |
|---|---|
| java.net |
Provides the classes for implementing networking applications.
|
| javax.net.ssl |
Provides classes for the secure socket package.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HttpURLConnection
A URLConnection with support for HTTP-specific features.
|
class |
JarURLConnection
A URL Connection to a Java ARchive (JAR) file or an entry in a JAR file.
|
| Modifier and Type | Field and Description |
|---|---|
protected URLConnection |
JarURLConnection.jarFileURLConnection
The connection to the JAR file URL, if the connection has been initiated.
|
| Modifier and Type | Method and Description |
|---|---|
URLConnection |
URL.openConnection()
Returns a
URLConnection instance that represents a connection to the remote object referred to by the
URL.
|
URLConnection |
URL.openConnection(Proxy
Same as
URL, except that the connection will be made through the specified proxy; Protocol handlers that do not support proxing will ignore the proxy parameter and make a normal connection.
|
protected abstract URLConnection |
URLStreamHandler.openConnection(URL
Opens a connection to the object referenced by the
URL argument.
|
protected URLConnection |
URLStreamHandler.openConnection(URL
Same as openConnection(URL), except that the connection will be made through the specified proxy; Protocol handlers that do not support proxying will ignore the proxy parameter and make a normal connection.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Object |
ContentHandler.getContent(URLConnection
Given a URL connect stream positioned at the beginning of the representation of an object, this method reads that stream and creates an object from it.
|
Object |
ContentHandler.getContent(URLConnection
Given a URL connect stream positioned at the beginning of the representation of an object, this method reads that stream and creates an object that matches one of the types specified.
|
abstract CacheRequest |
ResponseCache.put(URI
The protocol handler calls this method after a resource has been retrieved, and the ResponseCache must decide whether or not to store the resource in its cache.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HttpsURLConnection
HttpsURLConnection extends
HttpURLConnection with support for https-specific features.
|