public class JarClassLoader extends URLClassLoader
The AccessControlContext of the thread that created the instance of URLClassLoader will be used when subsequently loading classes and resources.
The classes that are loaded are by default granted permission only to access the URLs specified when the URLClassLoader was created.
| Constructor and Description |
|---|
JarClassLoader(URL[] urls)
Constructs a new URLClassLoader for the specified URLs using the
default delegation parent
ClassLoader. |
JarClassLoader(URL[] urls,
ClassLoader parent)
Constructs a new URLClassLoader for the given URLs.
|
JarClassLoader(URL[] urls,
ClassLoader parent,
URLStreamHandlerFactory factory)
Constructs a new URLClassLoader for the specified URLs, parent
class loader, and URLStreamHandlerFactory.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
addURL(URL url)
Appends the specified URL to the list of URLs to search for
classes and resources.
|
protected Package |
definePackage(String name,
Manifest man,
URL url)
Defines a new package by name in this ClassLoader.
|
protected Class<?> |
findClass(String name)
Finds and loads the class with the specified name from the URL search
path.
|
URL |
findResource(String name)
Finds the resource with the specified name on the URL search path.
|
Enumeration<URL> |
findResources(String name)
Returns an Enumeration of URLs representing all of the resources
on the URL search path having the specified name.
|
URL[] |
getURLs()
Returns the search path of URLs for loading classes and resources.
|
static JarClassLoader |
newInstance(URL[] urls)
Creates a new instance of URLClassLoader for the specified
URLs and default parent class loader.
|
static JarClassLoader |
newInstance(URL[] urls,
ClassLoader parent)
Creates a new instance of URLClassLoader for the specified
URLs and parent class loader.
|
close, getPermissions, getResourceAsStreamdefineClass, defineClassclearAssertionStatus, defineClass, defineClass, defineClass, defineClass, definePackage, findLibrary, findLoadedClass, findSystemClass, getClassLoadingLock, getPackage, getPackages, getParent, getResource, getResources, getSystemClassLoader, getSystemResource, getSystemResourceAsStream, getSystemResources, loadClass, loadClass, registerAsParallelCapable, resolveClass, setClassAssertionStatus, setDefaultAssertionStatus, setPackageAssertionStatus, setSignerspublic JarClassLoader(URL[] urls, ClassLoader parent)
If there is a security manager, this method first
calls the security manager's
checkCreateClassLoader method
to ensure creation of a class loader is allowed.
urls - the URLs from which to load classes and resourcesparent - the parent class loader for delegationSecurityException - if a security manager exists and its
checkCreateClassLoader method doesn't allow
creation of a class loader.SecurityManager.checkCreateClassLoader()public JarClassLoader(URL[] urls)
ClassLoader. 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.
If there is a security manager, this method first
calls the security manager's
checkCreateClassLoader method
to ensure creation of a class loader is allowed.
urls - the URLs from which to load classes and resourcesSecurityException - if a security manager exists and its
checkCreateClassLoader method doesn't allow
creation of a class loader.SecurityManager.checkCreateClassLoader()public JarClassLoader(URL[] urls, ClassLoader parent, URLStreamHandlerFactory factory)
If there is a security manager, this method first
calls the security manager's
checkCreateClassLoader method
to ensure creation of a class loader is allowed.
urls - the URLs from which to load classes and resourcesparent - the parent class loader for delegationfactory - the URLStreamHandlerFactory to use when creating URLsSecurityException - if a security manager exists and its
checkCreateClassLoader method doesn't allow
creation of a class loader.SecurityManager.checkCreateClassLoader()protected void addURL(URL url)
addURL in class URLClassLoaderurl - the URL to be added to the search path of URLspublic URL[] getURLs()
getURLs in class URLClassLoaderprotected Class<?> findClass(String name) throws ClassNotFoundException
findClass in class URLClassLoadername - the name of the classClassNotFoundException - if the class could not be foundprotected Package definePackage(String name, Manifest man, URL url) throws IllegalArgumentException
definePackage in class URLClassLoadername - the package nameman - the Manifest containing package version and sealing informationurl - the code source url for the package, or null if noneIllegalArgumentException - if the package name duplicates
an existing package either in this class loader or one of its ancestorspublic URL findResource(String name)
findResource in class URLClassLoadername - the name of the resourceURL for the resource, or
null
if the resource could not be found.public Enumeration<URL> findResources(String name) throws IOException
findResources in class URLClassLoadername - the resource nameEnumeration of
URLsIOException - if an I/O exception occurspublic static JarClassLoader newInstance(URL[] urls, ClassLoader parent)
loadClass method of the URLClassLoader
returned by this method will invoke the
SecurityManager.checkPackageAccess method before
loading the class.urls - the URLs to search for classes and resourcesparent - the parent class loader for delegationpublic static JarClassLoader newInstance(URL[] urls)
loadClass method of the URLClassLoader
returned by this method will invoke the
SecurityManager.checkPackageAccess before
loading the class.urls - the URLs to search for classes and resources