Top Description Constructors Methods
sun.net.www.protocol.jrt

public Class Handler

extends URLStreamHandler
Class Inheritance
Imports
java.io.IOException, java.net.URL, .URLConnection, .URLStreamHandler

Protocol handler for accessing resources in the runtime image.

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
protected URLConnection
openConnection(URL
the URL that this connects to.
url
)

Implements abstract java.net.URLStreamHandler.openConnection.

Opens a connection to the object referenced by the URL argument.
Inherited from java.net.URLStreamHandler:
equalsgetDefaultPortgetHostAddresshashCodehostsEqualopenConnectionparseURLsameFilesetURLsetURLtoExternalForm

Constructor Detail

Handlerback to summary
public Handler()

Method Detail

openConnectionback to summary
protected URLConnection openConnection(URL url) throws IOException

Implements abstract java.net.URLStreamHandler.openConnection.

Doc from java.net.URLStreamHandler.openConnection.

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
url:URL

the URL that this connects to.

Returns:URLConnection

a URLConnection object for the URL.

Annotations
@Override
Exceptions
IOException:
if an I/O error occurs while opening the connection.