URLStreamHandlerFactory
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 | Description |
---|---|---|
protected |
Initializes a new URL stream handler provider. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
createURLStreamHandler
protected URLStreamHandlerProvider()
SecurityException
- If a security manager has been installed and it denies RuntimePermission
("setFactory")
.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/net/spi/URLStreamHandlerProvider.html