public abstract class URLStreamHandlerProvider extends Object implements URLStreamHandlerFactory
A URL stream handler provider is a concrete subclass of this class that has a zero-argument constructor. URL stream handler providers may be installed in an instance of the Java platform by adding them to the application class path.
A URL stream handler provider identifies itself with a provider-configuration file named java.net.spi.URLStreamHandlerProvider in the resource directory META-INF/services. The file should contain a list of fully-qualified concrete URL stream handler provider class names, one per line.
URL stream handler providers are located at runtime, as specified in the URL constructor.
Modifier | Constructor and Description |
---|---|
protected |
URLStreamHandlerProvider()
Initializes a new URL stream handler provider.
|
protected URLStreamHandlerProvider()
SecurityException
- If a security manager has been installed and it denies
RuntimePermission
("setFactory")
. Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2016, Oracle and/or its affiliates. All rights reserved.
DRAFT 9-internal+0-2016-01-26-133437.ivan.openjdk9onspinwait