URLStreamHandler
abstract class URLStreamHandler
kotlin.Any | |
↳ | java.net.URLStreamHandler |
The abstract class URLStreamHandler
is the common superclass for all stream protocol handlers. A stream protocol handler knows how to make a connection for a particular protocol type, such as http
or https
.
In most cases, an instance of a URLStreamHandler
subclass is not created directly by an application. Rather, the first time a protocol name is encountered when constructing a URL
, the appropriate stream protocol handler is automatically loaded.
Summary
Public constructors | |
---|---|
Protected methods | |
---|---|
open Boolean |
Provides the default equals calculation. |
open Int |
Returns the default port for a URL parsed by this handler. |
open InetAddress! |
getHostAddress(u: URL!) Get the IP address of our host. |
open Int |
Provides the default hash calculation. |
open Boolean |
hostsEqual(u1: URL!, u2: URL!) Compares the host components of two URLs. |
abstract URLConnection! |
openConnection(u: URL!) Opens a connection to the object referenced by the |
open URLConnection! |
openConnection(u: URL!, p: Proxy!) 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. |
open Unit |
Parses the string representation of a |
open Boolean |
Compare two urls to see whether they refer to the same file, i. |
open Unit |
setURL(u: URL!, protocol: String!, host: String!, port: Int, authority: String!, userInfo: String!, path: String!, query: String!, ref: String!) Sets the fields of the |
open Unit |
Sets the fields of the |
open String! |
toExternalForm(u: URL!) Converts a |
Public constructors
Protected methods
equals
protected open fun equals(
u1: URL!,
u2: URL!
): Boolean
Provides the default equals calculation. May be overidden by handlers for other protocols that have different requirements for equals(). This method requires that none of its arguments is null. This is guaranteed by the fact that it is only called by java.net.URL class.
Parameters | |
---|---|
u1 |
URL!: a URL object |
u2 |
URL!: a URL object |
Return | |
---|---|
Boolean |
true if the two urls are considered equal, ie. they refer to the same fragment in the same file. |
getDefaultPort
protected open fun getDefaultPort(): Int
Returns the default port for a URL parsed by this handler. This method is meant to be overidden by handlers with default port numbers.
Return | |
---|---|
Int |
the default port for a URL parsed by this handler. |
getHostAddress
protected open fun getHostAddress(u: URL!): InetAddress!
Get the IP address of our host. An empty host field or a DNS failure will result in a null return.
Parameters | |
---|---|
u |
URL!: a URL object |
Return | |
---|---|
InetAddress! |
an InetAddress representing the host IP address. |
hashCode
protected open fun hashCode(u: URL!): Int
Provides the default hash calculation. May be overidden by handlers for other protocols that have different requirements for hashCode calculation.
Parameters | |
---|---|
u |
URL!: a URL object |
Return | |
---|---|
Int |
an int suitable for hash table indexing |
hostsEqual
protected open fun hostsEqual(
u1: URL!,
u2: URL!
): Boolean
Compares the host components of two URLs.
Parameters | |
---|---|
u1 |
URL!: the URL of the first host to compare |
u2 |
URL!: the URL of the second host to compare |
Return | |
---|---|
Boolean |
true if and only if they are equal, false otherwise. |
openConnection
protected abstract fun openConnection(u: URL!): URLConnection!
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.
Parameters | |
---|---|
u |
URL!: the URL that this connects to. |
Return | |
---|---|
URLConnection! |
a URLConnection object for the URL . |
Exceptions | |
---|---|
java.io.IOException |
if an I/O error occurs while opening the connection. |
openConnection
protected open fun openConnection(
u: URL!,
p: Proxy!
): URLConnection!
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.
Parameters | |
---|---|
u |
URL!: the URL that this connects to. |
p |
Proxy!: the proxy through which the connection will be made. If direct connection is desired, Proxy.NO_PROXY should be specified. |
Return | |
---|---|
URLConnection! |
a URLConnection object for the URL . |
Exceptions | |
---|---|
java.io.IOException |
if an I/O error occurs while opening the connection. |
java.lang.IllegalArgumentException |
if either u or p is null, or p has the wrong type. |
java.lang.UnsupportedOperationException |
if the subclass that implements the protocol doesn't support this method. |
parseURL
protected open fun parseURL(
u: URL!,
spec: String!,
start: Int,
limit: Int
): Unit
Parses the string representation of a URL
into a URL
object.
If there is any inherited context, then it has already been copied into the URL
argument.
The parseURL
method of URLStreamHandler
parses the string representation as if it were an http
specification. Most URL protocol families have a similar parsing. A stream protocol handler for a protocol that has a different syntax must override this routine.
Parameters | |
---|---|
u |
URL!: the URL to receive the result of parsing the spec. |
spec |
String!: the String representing the URL that must be parsed. |
start |
Int: the character index at which to begin parsing. This is just past the ': ' (if there is one) that specifies the determination of the protocol name. |
limit |
Int: the character position to stop parsing at. This is the end of the string or the position of the " " character, if present. All information after the sharp sign indicates an anchor. |
sameFile
protected open fun sameFile(
u1: URL!,
u2: URL!
): Boolean
Compare two urls to see whether they refer to the same file, i.e., having the same protocol, host, port, and path. This method requires that none of its arguments is null. This is guaranteed by the fact that it is only called indirectly by java.net.URL class.
Parameters | |
---|---|
u1 |
URL!: a URL object |
u2 |
URL!: a URL object |
Return | |
---|---|
Boolean |
true if u1 and u2 refer to the same file |
setURL
protected open fun setURL(
u: URL!,
protocol: String!,
host: String!,
port: Int,
authority: String!,
userInfo: String!,
path: String!,
query: String!,
ref: String!
): Unit
Sets the fields of the URL
argument to the indicated values. Only classes derived from URLStreamHandler are able to use this method to set the values of the URL fields.
Parameters | |
---|---|
u |
URL!: the URL to modify. |
protocol |
String!: the protocol name. |
host |
String!: the remote host value for the URL. |
port |
Int: the port on the remote machine. |
authority |
String!: the authority part for the URL. |
userInfo |
String!: the userInfo part of the URL. |
path |
String!: the path component of the URL. |
query |
String!: the query part for the URL. |
ref |
String!: the reference. |
Exceptions | |
---|---|
java.lang.SecurityException |
if the protocol handler of the URL is different from this one |
setURL
protected open funsetURL(
u: URL!,
protocol: String!,
host: String!,
port: Int,
file: String!,
ref: String!
): Unit
Deprecated: Use setURL(URL, String, String, int, String, String, String, String);
Sets the fields of the URL
argument to the indicated values. Only classes derived from URLStreamHandler are able to use this method to set the values of the URL fields.
Parameters | |
---|---|
u |
URL!: the URL to modify. |
protocol |
String!: the protocol name. This value is ignored since 1.2. |
host |
String!: the remote host value for the URL. |
port |
Int: the port on the remote machine. |
file |
String!: the file. |
ref |
String!: the reference. |
Exceptions | |
---|---|
java.lang.SecurityException |
if the protocol handler of the URL is different from this one |
toExternalForm
protected open fun toExternalForm(u: URL!): String!
Converts a URL
of a specific protocol to a String
.
Parameters | |
---|---|
u |
URL!: the URL. |
Return | |
---|---|
String! |
a string representation of the URL argument. |