java.lang.Objectjava.lang.ClassLoader
java.security.SecureClassLoader
java.net.URLClassLoader
public class URLClassLoader
This class loader is used to load classes and resources from a search path of URLs referring to both JAR files and directories. 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 opened as needed.
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 Summary | |
|---|---|
URLClassLoader(URL[] urls)
Constructs a new URLClassLoader for the specified URLs using the default delegation parent ClassLoader. |
|
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 | |
|---|---|
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. |
protected PermissionCollection |
getPermissions(CodeSource codesource)
Returns the permissions for the given codesource object. |
URL[] |
getURLs()
Returns the search path of URLs for loading classes and resources. |
static URLClassLoader |
newInstance(URL[] urls)
Creates a new instance of URLClassLoader for the specified URLs and default parent class loader. |
static URLClassLoader |
newInstance(URL[] urls,
ClassLoader parent)
Creates a new instance of URLClassLoader for the specified URLs and parent class loader. |
| Methods inherited from class java.security.SecureClassLoader |
|---|
defineClass, defineClass |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public URLClassLoader(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 delegation
SecurityException - if a security manager exists and its
checkCreateClassLoader method doesn't allow
creation of a class loader.SecurityManager.checkCreateClassLoader()public URLClassLoader(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 resources
SecurityException - if a security manager exists and its
checkCreateClassLoader method doesn't allow
creation of a class loader.SecurityManager.checkCreateClassLoader()public URLClassLoader(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 URLs
SecurityException - if a security manager exists and its
checkCreateClassLoader method doesn't allow
creation of a class loader.SecurityManager.checkCreateClassLoader()| Method Detail |
|---|
protected void addURL(URL url)
url - the URL to be added to the search path of URLspublic URL[] getURLs()
protected Class<?> findClass(String name) throws ClassNotFoundException
findClass in class ClassLoadername - the name of the class
ClassNotFoundException - if the class could not be foundprotected Package definePackage(String name, Manifest man, URL url) throws IllegalArgumentException
name - the package nameman - the Manifest containing package version and sealing
informationurl - the code source url for the package, or null if none
IllegalArgumentException - 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 ClassLoadername - the name of the resource
URL for the resource, or null
if the resource could not be found.public Enumeration<URL> findResources(String name) throws IOException
findResources in class ClassLoadername - the resource name
Enumeration of URLs
IOException - if an I/O exception occursprotected PermissionCollection getPermissions(CodeSource codesource)
If the protocol is "file" and the path specifies a file, then permission to read that file is granted. If protocol is "file" and the path is a directory, permission is granted to read all files and (recursively) all files and subdirectories contained in that directory.
If the protocol is not "file", then to connect to and accept connections from the URL's host is granted.
getPermissions in class SecureClassLoadercodesource - the codesource
public static URLClassLoader 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 delegation
public static URLClassLoader 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
Ces informations proviennent du site de http://java.sun.com
Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :
Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.
Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.
Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.
Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.
Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.
Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.
6 mots clés dont 0 définis manuellement (plus d'information...).
Avertissement
Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.
Recherche (afficher)
Utilisateur (masquer)
Navigation (masquer)
Apparence (afficher)
Stats (afficher)
Citation (masquer)