Top "Urlclassloader" questions

This class loader is used to load classes and resources from a search path of URLs referring to both JAR files and directories.

Is it possible to "add" to classpath dynamically in java?

java -classpath ../classes;../jar;. parserTester How can i get the functionality in the above command programmatically? Like, is it possible …

java classpath urlclassloader
Problem reloading a jar using URLClassLoader

I need to add plugin functionality to an existing application for certain parts of the application. I want to be …

java nullpointerexception urlclassloader
Listing classes in a jar file

How can I dynamically load a jar file and list classes which is in it?

java class dynamic urlclassloader
Java example with ClassLoader

I have small problem. I learn java SE and find class ClassLoader. I try to use it in below code: …

java urlclassloader
ClassNotFoundException while loading a class from file with URLClassLoader

I am using the following code to create an instance of OdbcIniTarget class which implements the Target interface. The OdbcIniTarget …

java reflection urlclassloader
Java 9, compatability issue with ClassLoader.getSystemClassLoader

The following code adds jar file to the build path, it works fine with Java 8. However, it throws exception with …

java classloader java-9 urlclassloader
Load class within Jar file and get it's path

I know there are already a lot similar questions here, but I couldn't get any smarter form them. I want …

java plugins jar classloader urlclassloader
java web start alternative

We're looking for an alternative to Java web start that effectively does the same thing, just better implemented. We're having …

java deployment java-web-start urlclassloader
Can't find Class with Class.forName() but it exists

I have a program in which I am generating classes at runtime (included only variable and associated getters and setters …

java reflection classloader urlclassloader
How do I "close" a ClassLoader?

I have a case where I need to create a lot of class loaders in my application to temporarily make …

java urlclassloader