java.net
Class URLStreamHandler

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.net.URLStreamHandler

public abstract class URLStreamHandler
extends Object sample code for java.lang.Object definition code for java.lang.Object

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, ftp, or gopher.

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.

Since:
JDK1.0
See Also:
URL.URL(java.lang.String, java.lang.String, int, java.lang.String) sample code for java.net.URL.URL(java.lang.String, java.lang.String, int, java.lang.String) definition code for java.net.URL.URL(java.lang.String, java.lang.String, int, java.lang.String)

Constructor Summary
URLStreamHandler sample code for java.net.URLStreamHandler.URLStreamHandler() definition code for java.net.URLStreamHandler.URLStreamHandler() ()
           
 
Method Summary
protected  boolean equals sample code for java.net.URLStreamHandler.equals(java.net.URL, java.net.URL) definition code for java.net.URLStreamHandler.equals(java.net.URL, java.net.URL) (URL sample code for java.net.URL definition code for java.net.URL  u1, URL sample code for java.net.URL definition code for java.net.URL  u2)
          Provides the default equals calculation.
protected  int getDefaultPort sample code for java.net.URLStreamHandler.getDefaultPort() definition code for java.net.URLStreamHandler.getDefaultPort() ()
          Returns the default port for a URL parsed by this handler.
protected  InetAddress sample code for java.net.InetAddress definition code for java.net.InetAddress getHostAddress sample code for java.net.URLStreamHandler.getHostAddress(java.net.URL) definition code for java.net.URLStreamHandler.getHostAddress(java.net.URL) (URL sample code for java.net.URL definition code for java.net.URL  u)
          Get the IP address of our host.
protected  int hashCode sample code for java.net.URLStreamHandler.hashCode(java.net.URL) definition code for java.net.URLStreamHandler.hashCode(java.net.URL) (URL sample code for java.net.URL definition code for java.net.URL  u)
          Provides the default hash calculation.
protected  boolean hostsEqual sample code for java.net.URLStreamHandler.hostsEqual(java.net.URL, java.net.URL) definition code for java.net.URLStreamHandler.hostsEqual(java.net.URL, java.net.URL) (URL sample code for java.net.URL definition code for java.net.URL  u1, URL sample code for java.net.URL definition code for java.net.URL  u2)
          Compares the host components of two URLs.
protected abstract  URLConnection sample code for java.net.URLConnection definition code for java.net.URLConnection openConnection sample code for java.net.URLStreamHandler.openConnection(java.net.URL) definition code for java.net.URLStreamHandler.openConnection(java.net.URL) (URL sample code for java.net.URL definition code for java.net.URL  u)
          Opens a connection to the object referenced by the URL argument.
protected  URLConnection sample code for java.net.URLConnection definition code for java.net.URLConnection openConnection sample code for java.net.URLStreamHandler.openConnection(java.net.URL, java.net.Proxy) definition code for java.net.URLStreamHandler.openConnection(java.net.URL, java.net.Proxy) (URL sample code for java.net.URL definition code for java.net.URL  u, Proxy sample code for java.net.Proxy definition code for java.net.Proxy  p)
          Same as openConnection(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  void parseURL sample code for java.net.URLStreamHandler.parseURL(java.net.URL, java.lang.String, int, int) definition code for java.net.URLStreamHandler.parseURL(java.net.URL, java.lang.String, int, int) (URL sample code for java.net.URL definition code for java.net.URL  u, String sample code for java.lang.String definition code for java.lang.String  spec, int start, int limit)
          Parses the string representation of a URL into a URL object.
protected  boolean sameFile sample code for java.net.URLStreamHandler.sameFile(java.net.URL, java.net.URL) definition code for java.net.URLStreamHandler.sameFile(java.net.URL, java.net.URL) (URL sample code for java.net.URL definition code for java.net.URL  u1, URL sample code for java.net.URL definition code for java.net.URL  u2)
          Compare two urls to see whether they refer to the same file, i.e., having the same protocol, host, port, and path.
protected  void setURL sample code for java.net.URLStreamHandler.setURL(java.net.URL, java.lang.String, java.lang.String, int, java.lang.String, java.lang.String) definition code for java.net.URLStreamHandler.setURL(java.net.URL, java.lang.String, java.lang.String, int, java.lang.String, java.lang.String) (URL sample code for java.net.URL definition code for java.net.URL  u, String sample code for java.lang.String definition code for java.lang.String  protocol, String sample code for java.lang.String definition code for java.lang.String  host, int port, String sample code for java.lang.String definition code for java.lang.String  file, String sample code for java.lang.String definition code for java.lang.String  ref)
          Deprecated. Use setURL(URL, String, String, int, String, String, String, String);
protected  void setURL sample code for java.net.URLStreamHandler.setURL(java.net.URL, java.lang.String, java.lang.String, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) definition code for java.net.URLStreamHandler.setURL(java.net.URL, java.lang.String, java.lang.String, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) (URL sample code for java.net.URL definition code for java.net.URL  u, String sample code for java.lang.String definition code for java.lang.String  protocol, String sample code for java.lang.String definition code for java.lang.String  host, int port, String sample code for java.lang.String definition code for java.lang.String  authority, String sample code for java.lang.String definition code for java.lang.String  userInfo, String sample code for java.lang.String definition code for java.lang.String  path, String sample code for java.lang.String definition code for java.lang.String  query, String sample code for java.lang.String definition code for java.lang.String  ref)
          Sets the fields of the URL argument to the indicated values.
protected  String sample code for java.lang.String definition code for java.lang.String toExternalForm sample code for java.net.URLStreamHandler.toExternalForm(java.net.URL) definition code for java.net.URLStreamHandler.toExternalForm(java.net.URL) (URL sample code for java.net.URL definition code for java.net.URL  u)
          Converts a URL of a specific protocol to a String.
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , toString sample code for java.lang.Object.toString() definition code for java.lang.Object.toString() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

URLStreamHandler sample code for java.net.URLStreamHandler() definition code for java.net.URLStreamHandler()

public URLStreamHandler()
Method Detail

openConnection sample code for java.net.URLStreamHandler.openConnection(java.net.URL) definition code for java.net.URLStreamHandler.openConnection(java.net.URL)

protected abstract URLConnection sample code for java.net.URLConnection definition code for java.net.URLConnection  openConnection(URL sample code for java.net.URL definition code for java.net.URL  u)
                                         throws IOException sample code for java.io.IOException definition code for java.io.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.

Parameters:
u - the URL that this connects to.
Returns:
a URLConnection object for the URL.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs while opening the connection.

openConnection sample code for java.net.URLStreamHandler.openConnection(java.net.URL, java.net.Proxy) definition code for java.net.URLStreamHandler.openConnection(java.net.URL, java.net.Proxy)

protected URLConnection sample code for java.net.URLConnection definition code for java.net.URLConnection  openConnection(URL sample code for java.net.URL definition code for java.net.URL  u,
                                       Proxy sample code for java.net.Proxy definition code for java.net.Proxy  p)
                                throws IOException sample code for java.io.IOException definition code for java.io.IOException 
Same as openConnection(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. Calling this method preempts the system's default ProxySelector settings.

Parameters:
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.
Returns:
a URLConnection object for the URL.
Throws:
IOException sample code for java.io.IOException definition code for java.io.IOException - if an I/O error occurs while opening the connection.
IllegalArgumentException sample code for java.lang.IllegalArgumentException definition code for java.lang.IllegalArgumentException - if either u or p is null, or p has the wrong type.
UnsupportedOperationException sample code for java.lang.UnsupportedOperationException definition code for java.lang.UnsupportedOperationException - if the subclass that implements the protocol doesn't support this method.
Since:
1.5

parseURL sample code for java.net.URLStreamHandler.parseURL(java.net.URL, java.lang.String, int, int) definition code for java.net.URLStreamHandler.parseURL(java.net.URL, java.lang.String, int, int)

protected void parseURL(URL sample code for java.net.URL definition code for java.net.URL  u,
                        String sample code for java.lang.String definition code for java.lang.String  spec,
                        int start,
                        int limit)
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 - the URL to receive the result of parsing the spec.
spec - the String representing the URL that must be parsed.
start - 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 - 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.

getDefaultPort sample code for java.net.URLStreamHandler.getDefaultPort() definition code for java.net.URLStreamHandler.getDefaultPort()

protected int getDefaultPort()
Returns the default port for a URL parsed by this handler. This method is meant to be overidden by handlers with default port numbers.

Returns:
the default port for a URL parsed by this handler.

equals sample code for java.net.URLStreamHandler.equals(java.net.URL, java.net.URL) definition code for java.net.URLStreamHandler.equals(java.net.URL, java.net.URL)

protected boolean equals(URL sample code for java.net.URL definition code for java.net.URL  u1,
                         URL sample code for java.net.URL definition code for java.net.URL  u2)
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 - a URL object
u2 - a URL object
Returns:
true if the two urls are considered equal, ie. they refer to the same fragment in the same file.

hashCode sample code for java.net.URLStreamHandler.hashCode(java.net.URL) definition code for java.net.URLStreamHandler.hashCode(java.net.URL)

protected int hashCode(URL sample code for java.net.URL definition code for java.net.URL  u)
Provides the default hash calculation. May be overidden by handlers for other protocols that have different requirements for hashCode calculation.

Parameters:
u - a URL object
Returns:
an int suitable for hash table indexing

sameFile sample code for java.net.URLStreamHandler.sameFile(java.net.URL, java.net.URL) definition code for java.net.URLStreamHandler.sameFile(java.net.URL, java.net.URL)

protected boolean sameFile(URL sample code for java.net.URL definition code for java.net.URL  u1,
                           URL sample code for java.net.URL definition code for java.net.URL  u2)
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 - a URL object
u2 - a URL object
Returns:
true if u1 and u2 refer to the same file

getHostAddress sample code for java.net.URLStreamHandler.getHostAddress(java.net.URL) definition code for java.net.URLStreamHandler.getHostAddress(java.net.URL)

protected InetAddress sample code for java.net.InetAddress definition code for java.net.InetAddress  getHostAddress(URL sample code for java.net.URL definition code for java.net.URL  u)
Get the IP address of our host. An empty host field or a DNS failure will result in a null return.

Parameters:
u - a URL object
Returns:
an InetAddress representing the host IP address.

hostsEqual sample code for java.net.URLStreamHandler.hostsEqual(java.net.URL, java.net.URL) definition code for java.net.URLStreamHandler.hostsEqual(java.net.URL, java.net.URL)

protected boolean hostsEqual(URL sample code for java.net.URL definition code for java.net.URL  u1,
                             URL sample code for java.net.URL definition code for java.net.URL  u2)
Compares the host components of two URLs.

Parameters:
u1 - the URL of the first host to compare
u2 - the URL of the second host to compare
Returns:
true if and only if they are equal, false otherwise.

toExternalForm sample code for java.net.URLStreamHandler.toExternalForm(java.net.URL) definition code for java.net.URLStreamHandler.toExternalForm(java.net.URL)

protected String sample code for java.lang.String definition code for java.lang.String  toExternalForm(URL sample code for java.net.URL definition code for java.net.URL  u)
Converts a URL of a specific protocol to a String.

Parameters:
u - the URL.
Returns:
a string representation of the URL argument.

setURL sample code for java.net.URLStreamHandler.setURL(java.net.URL, java.lang.String, java.lang.String, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) definition code for java.net.URLStreamHandler.setURL(java.net.URL, java.lang.String, java.lang.String, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String)

protected void setURL(URL sample code for java.net.URL definition code for java.net.URL  u,
                      String sample code for java.lang.String definition code for java.lang.String  protocol,
                      String sample code for java.lang.String definition code for java.lang.String  host,
                      int port,
                      String sample code for java.lang.String definition code for java.lang.String  authority,
                      String sample code for java.lang.String definition code for java.lang.String  userInfo,
                      String sample code for java.lang.String definition code for java.lang.String  path,
                      String sample code for java.lang.String definition code for java.lang.String  query,
                      String sample code for java.lang.String definition code for java.lang.String  ref)
Sets the fields of the URL argument to the indicated values. Only classes derived from URLStreamHandler are supposed to be able to call the set method on a URL.

Parameters:
u - the URL to modify.
protocol - the protocol name.
host - the remote host value for the URL.
port - the port on the remote machine.
authority - the authority part for the URL.
userInfo - the userInfo part of the URL.
path - the path component of the URL.
query - the query part for the URL.
ref - the reference.
Throws:
SecurityException sample code for java.lang.SecurityException definition code for java.lang.SecurityException - if the protocol handler of the URL is different from this one
See Also:
URL.set(java.lang.String, java.lang.String, int, java.lang.String, java.lang.String) sample code for java.net.URL.set(java.lang.String, java.lang.String, int, java.lang.String, java.lang.String) definition code for java.net.URL.set(java.lang.String, java.lang.String, int, java.lang.String, java.lang.String)

setURL sample code for java.net.URLStreamHandler.setURL(java.net.URL, java.lang.String, java.lang.String, int, java.lang.String, java.lang.String) definition code for java.net.URLStreamHandler.setURL(java.net.URL, java.lang.String, java.lang.String, int, java.lang.String, java.lang.String)

@Deprecated
protected void setURL(URL sample code for java.net.URL definition code for java.net.URL  u,
                                 String sample code for java.lang.String definition code for java.lang.String  protocol,
                                 String sample code for java.lang.String definition code for java.lang.String  host,
                                 int port,
                                 String sample code for java.lang.String definition code for java.lang.String  file,
                                 String sample code for java.lang.String definition code for java.lang.String  ref)
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 supposed to be able to call the set method on a URL.

Parameters:
u - the URL to modify.
protocol - the protocol name. This value is ignored since 1.2.
host - the remote host value for the URL.
port - the port on the remote machine.
file - the file.
ref - the reference.
Throws:
SecurityException sample code for java.lang.SecurityException definition code for java.lang.SecurityException - if the protocol handler of the URL is different from this one