java.lang.Object | |||
↳ | java.net.URLStreamHandler | ||
↳ | sun.net.www.protocol.http.Handler | ||
↳ | sun.net.www.protocol.https.Handler |
open an http input stream given a URL
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
proxy | |||||||||||
proxyPort |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the default port for a URL parsed by this handler.
| |||||||||||
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.
| |||||||||||
Opens a connection to the object referenced by the
URL argument. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
Returns the default port for a URL parsed by this handler. This method is meant to be overidden by handlers with default port numbers.
URL
parsed by this handler.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. Calling this method preempts the system's default ProxySelector settings.
u | the URL that this connects to. |
---|---|
p | the proxy through which the connection will be made. If direct connection is desired, Proxy.NO_PROXY should be specified. |
URLConnection
object for the URL
.IOException |
---|
Opens a connection to the object referenced by the
URL
argument.
This method should be overridden by a subclass.
If for the handler's protocol (such as HTTP or JAR), there exists a public, specialized URLConnection subclass belonging to one of the following packages or one of their subpackages: java.lang, java.io, java.util, java.net, the connection returned will be of that subclass. For example, for HTTP an HttpURLConnection will be returned, and for JAR a JarURLConnection will be returned.
u | the URL that this connects to. |
---|
URLConnection
object for the URL
.IOException |
---|