Class URLClassLoader
- All Implemented Interfaces:
Closeable, AutoCloseable
jar:
scheme URL (see JarURLConnection) is assumed to refer to a
JAR file. Any file: scheme URL that ends with a '/' is assumed to
refer to a directory. Otherwise, the URL is assumed to refer to a JAR file
which will be opened as needed.
This class loader supports the loading of classes and resources from the contents of a multi-release JAR file that is referred to by a given URL.
- Since:
- 1.2
-
Constructor Summary
ConstructorsConstructorDescriptionURLClassLoader(String name, URL[] urls, ClassLoader parent) Constructs a new namedURLClassLoaderfor the specified URLs.URLClassLoader(String name, URL[] urls, ClassLoader parent, URLStreamHandlerFactory factory) Constructs a new namedURLClassLoaderfor the specified URLs, parent class loader, and URLStreamHandlerFactory.URLClassLoader(URL[] urls) Constructs a new URLClassLoader for the specified URLs using the system class loader as the parent.URLClassLoader(URL[] urls, ClassLoader parent) Constructs a new URLClassLoader for the given URLs.URLClassLoader(URL[] urls, ClassLoader parent, URLStreamHandlerFactory factory) Constructs a new URLClassLoader for the specified URLs, parent class loader, and URLStreamHandlerFactory. -
Method Summary
Modifier and TypeMethodDescriptionprotected voidAppends the specified URL to the list of URLs to search for classes and resources.voidclose()Closes this URLClassLoader, so that it can no longer be used to load new classes or resources that are defined by this loader.protected PackagedefinePackage(String name, Manifest man, URL url) Defines a new package by name in thisURLClassLoader.protected Class<?> Finds and loads the class with the specified name from the URL search path.findResource(String name) Finds the resource with the specified name on the URL search path.findResources(String name) Returns an Enumeration of URLs representing all of the resources on the URL search path having the specified name.protected PermissionCollectiongetPermissions(CodeSource codesource) Returns an empty Permission collection.getResourceAsStream(String name) Returns an input stream for reading the specified resource.URL[]getURLs()Returns the search path of URLs for loading classes and resources.static URLClassLoadernewInstance(URL[] urls) Creates a new instance of URLClassLoader for the specified URLs and default parent class loader.static URLClassLoadernewInstance(URL[] urls, ClassLoader parent) Creates a new instance of URLClassLoader for the specified URLs and parent class loader.Methods declared in class SecureClassLoader
defineClass, defineClassModifier and TypeMethodDescriptionprotected final Class<?> defineClass(String name, byte[] b, int off, int len, CodeSource cs) Converts an array of bytes into an instance of classClass, with an optional CodeSource.protected final Class<?> defineClass(String name, ByteBuffer b, CodeSource cs) Converts aByteBufferinto an instance of classClass, with an optional CodeSource.Methods declared in class ClassLoader
clearAssertionStatus, defineClass, defineClass, defineClass, defineClass, definePackage, findClass, findLibrary, findLoadedClass, findResource, findSystemClass, getClassLoadingLock, getDefinedPackage, getDefinedPackages, getName, getPackage, getPackages, getParent, getPlatformClassLoader, getResource, getResources, getSystemClassLoader, getSystemResource, getSystemResourceAsStream, getSystemResources, getUnnamedModule, isRegisteredAsParallelCapable, loadClass, loadClass, registerAsParallelCapable, resolveClass, resources, setClassAssertionStatus, setDefaultAssertionStatus, setPackageAssertionStatus, setSignersModifier and TypeMethodDescriptionvoidSets the default assertion status for this class loader tofalseand discards any package defaults or class assertion status settings associated with the class loader.protected final Class<?> defineClass(byte[] b, int off, int len) Deprecated.protected final Class<?> defineClass(String name, byte[] b, int off, int len) Converts an array of bytes into an instance of classClass.protected final Class<?> defineClass(String name, byte[] b, int off, int len, ProtectionDomain protectionDomain) Converts an array of bytes into an instance of classClass, with a givenProtectionDomain.protected final Class<?> defineClass(String name, ByteBuffer b, ProtectionDomain protectionDomain) protected PackagedefinePackage(String name, String specTitle, String specVersion, String specVendor, String implTitle, String implVersion, String implVendor, URL sealBase) Defines a package by name in thisClassLoader.protected Class<?> Finds the class with the given binary name in a module defined to this class loader.protected StringfindLibrary(String libname) Returns the absolute path name of a native library.protected final Class<?> findLoadedClass(String name) Returns the class with the given binary name if this loader has been recorded by the Java virtual machine as an initiating loader of a class with that binary name.protected URLfindResource(String moduleName, String name) Returns a URL to a resource in a module defined to this class loader.protected final Class<?> findSystemClass(String name) Finds a class with the specified binary name, loading it if necessary.protected ObjectgetClassLoadingLock(String className) Returns the lock object for class loading operations.final PackagegetDefinedPackage(String name) Returns aPackageof the given name that has been defined by this class loader.final Package[]Returns all of thePackages that have been defined by this class loader.getName()Returns the name of this class loader ornullif this class loader is not named.protected PackagegetPackage(String name) Deprecated.If multiple class loaders delegate to each other and define classes with the same package name, and one such loader relies on the lookup behavior ofgetPackageto return aPackagefrom a parent loader, then the properties exposed by thePackagemay not be as expected in the rest of the program.protected Package[]Returns all of thePackages that have been defined by this class loader and its ancestors.final ClassLoaderReturns the parent class loader for delegation.static ClassLoaderReturns the platform class loader.getResource(String name) Finds the resource with the given name.getResources(String name) Finds all the resources with the given name.static ClassLoaderReturns the system class loader.static URLgetSystemResource(String name) Find a resource of the specified name from the search path used to load classes.static InputStreamOpen for reading, a resource of the specified name from the search path used to load classes.static Enumeration<URL> getSystemResources(String name) Finds all resources of the specified name from the search path used to load classes.final ModuleReturns the unnamedModulefor this class loader.final booleanClass<?> Loads the class with the specified binary name.protected Class<?> Loads the class with the specified binary name.protected static booleanRegisters the caller as parallel capable.protected final voidresolveClass(Class<?> c) Links the specified class.Returns a stream whose elements are the URLs of all the resources with the given name.voidsetClassAssertionStatus(String className, boolean enabled) Sets the desired assertion status for the named top-level class in this class loader and any nested classes contained therein.voidsetDefaultAssertionStatus(boolean enabled) Sets the default assertion status for this class loader.voidsetPackageAssertionStatus(String packageName, boolean enabled) Sets the package default assertion status for the named package.protected final voidsetSigners(Class<?> c, Object[] signers) Sets the signers of a class.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
URLClassLoader
Constructs a new URLClassLoader for the given URLs. The URLs will be searched in the order specified for classes and resources after first searching in the specified parent class loader. Anyjar:scheme URL is assumed to refer to a JAR file. Anyfile:scheme URL that ends with a '/' is assumed to refer to a directory. Otherwise, the URL is assumed to refer to a JAR file which will be downloaded and opened as needed.- API Note:
- If
parentis specified asnull(for the bootstrap class loader) then there is no guarantee that all platform classes are visible. See Run-time Built-in Class Loaders for information on the bootstrap class loader and other built-in class loaders. - Parameters:
urls- the URLs from which to load classes and resourcesparent- the parent class loader for delegation, can benullfor the bootstrap class loader- Throws:
NullPointerException- ifurlsor any of its elements isnull.
-
URLClassLoader
Constructs a new URLClassLoader for the specified URLs using the system class loader as the parent. The URLs will be searched in the order specified for classes and resources after first searching in the parent class loader. Any URL that ends with a '/' is assumed to refer to a directory. Otherwise, the URL is assumed to refer to a JAR file which will be downloaded and opened as needed.- Parameters:
urls- the URLs from which to load classes and resources- Throws:
NullPointerException- ifurlsor any of its elements isnull.
-
URLClassLoader
Constructs a new URLClassLoader for the specified URLs, parent class loader, and URLStreamHandlerFactory. The parent argument will be used as the parent class loader for delegation. The factory argument will be used as the stream handler factory to obtain protocol handlers when creating new jar URLs.- API Note:
- If
parentis specified asnull(for the bootstrap class loader) then there is no guarantee that all platform classes are visible. See Run-time Built-in Class Loaders for information on the bootstrap class loader and other built-in class loaders. - Parameters:
urls- the URLs from which to load classes and resourcesparent- the parent class loader for delegation, can benullfor the bootstrap class loaderfactory- the URLStreamHandlerFactory to use when creating URLs- Throws:
NullPointerException- ifurlsor any of its elements isnull.
-
URLClassLoader
Constructs a new namedURLClassLoaderfor the specified URLs. The URLs will be searched in the order specified for classes and resources after first searching in the specified parent class loader. Any URL that ends with a '/' is assumed to refer to a directory. Otherwise, the URL is assumed to refer to a JAR file which will be downloaded and opened as needed.- API Note:
- If
parentis specified asnull(for the bootstrap class loader) then there is no guarantee that all platform classes are visible. See Run-time Built-in Class Loaders for information on the bootstrap class loader and other built-in class loaders. - Parameters:
name- class loader name; ornullif not namedurls- the URLs from which to load classes and resourcesparent- the parent class loader for delegation, can benullfor the bootstrap class loader- Throws:
IllegalArgumentException- if the given name is empty.NullPointerException- ifurlsor any of its elements isnull.- Since:
- 9
-
URLClassLoader
Constructs a new namedURLClassLoaderfor the specified URLs, parent class loader, and URLStreamHandlerFactory. The parent argument will be used as the parent class loader for delegation. The factory argument will be used as the stream handler factory to obtain protocol handlers when creating new jar URLs.- API Note:
- If
parentis specified asnull(for the bootstrap class loader) then there is no guarantee that all platform classes are visible. See Run-time Built-in Class Loaders for information on the bootstrap class loader and other built-in class loaders. - Parameters:
name- class loader name; ornullif not namedurls- the URLs from which to load classes and resourcesparent- the parent class loader for delegation, can benullfor the bootstrap class loaderfactory- the URLStreamHandlerFactory to use when creating URLs- Throws:
IllegalArgumentException- if the given name is empty.NullPointerException- ifurlsor any of its elements isnull.- Since:
- 9
-
-
Method Details
-
getResourceAsStream
Returns an input stream for reading the specified resource. If this loader is closed, then any resources opened by this method will be closed.The search order is described in the documentation for
ClassLoader.getResource(String).- Overrides:
getResourceAsStreamin classClassLoader- Parameters:
name- The resource name- Returns:
- An input stream for reading the resource, or
nullif the resource could not be found - Throws:
NullPointerException- Ifnameisnull- Since:
- 1.7
-
close
Closes this URLClassLoader, so that it can no longer be used to load new classes or resources that are defined by this loader. Classes and resources defined by any of this loader's parents in the delegation hierarchy are still accessible. Also, any classes or resources that are already loaded, are still accessible.In the case of jar: and file: URLs, it also closes any files that were opened by it. If another thread is loading a class when the
closemethod is invoked, then the result of that load is undefined.The method makes a best effort attempt to close all opened files, by catching
IOExceptions internally. Unchecked exceptions and errors are not caught. Calling close on an already closed loader has no effect.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException- if closing any file opened by this class loader resulted in an IOException. Any such exceptions are caught internally. If only one is caught, then it is re-thrown. If more than one exception is caught, then the second and following exceptions are added as suppressed exceptions of the first one caught, which is then re-thrown.- Since:
- 1.7
-
addURL
Appends the specified URL to the list of URLs to search for classes and resources.If the URL specified is
nullor is already in the list of URLs, or if this loader is closed, then invoking this method has no effect.- Parameters:
url- the URL to be added to the search path of URLs
-
getURLs
Returns the search path of URLs for loading classes and resources. This includes the original list of URLs specified to the constructor, along with any URLs subsequently appended by the addURL() method.- Returns:
- the search path of URLs for loading classes and resources.
-
findClass
Finds and loads the class with the specified name from the URL search path. Any URLs referring to JAR files are loaded and opened as needed until the class is found.- Overrides:
findClassin classClassLoader- Parameters:
name- the name of the class- Returns:
- the resulting class
- Throws:
ClassNotFoundException- if the class could not be found, or if the loader is closed.NullPointerException- ifnameisnull.
-
definePackage
Defines a new package by name in thisURLClassLoader. The attributes contained in the specifiedManifestwill be used to obtain package version and sealing information. For sealed packages, the additional URL specifies the code source URL from which the package was loaded.- Parameters:
name- the package nameman- theManifestcontaining package version and sealing informationurl- the code source url for the package, or null if none- Returns:
- the newly defined
Packageobject - Throws:
IllegalArgumentException- if the package name is already defined by this class loader
-
findResource
Finds the resource with the specified name on the URL search path.- Overrides:
findResourcein classClassLoader- Parameters:
name- the name of the resource- Returns:
- a
URLfor the resource, ornullif the resource could not be found, or if the loader is closed.
-
findResources
Returns an Enumeration of URLs representing all of the resources on the URL search path having the specified name.- Overrides:
findResourcesin classClassLoader- Parameters:
name- the resource name- Returns:
- An
EnumerationofURLs. If the loader is closed, the Enumeration contains no elements. - Throws:
IOException- if an I/O exception occurs
-
getPermissions
Returns an empty Permission collection.- Overrides:
getPermissionsin classSecureClassLoader- Parameters:
codesource- theCodeSource- Returns:
- an empty Permission collection
- Throws:
NullPointerException- ifcodesourceisnull.
-
newInstance
Creates a new instance of URLClassLoader for the specified URLs and parent class loader.- Parameters:
urls- the URLs to search for classes and resourcesparent- the parent class loader for delegation- Returns:
- the resulting class loader
- Throws:
NullPointerException- ifurlsor any of its elements isnull.
-
newInstance
Creates a new instance of URLClassLoader for the specified URLs and default parent class loader.- Parameters:
urls- the URLs to search for classes and resources- Returns:
- the resulting class loader
- Throws:
NullPointerException- ifurlsor any of its elements isnull.
-
defineClass(String, byte[], int, int)