Loading a class that is not in the CLASSPATH

Hi all,is there any mechanism to load a class that is not in the CLASSPATH variable other than using 'ClassLoader' ?
[132 byte] By [hareesh_84a] at [2007-11-26 21:02:51]
# 1

yes. have the class present on your application's classpath. using the environment variable CLASSPATH isn't really a very good idea

but to answer your real question "is there any other way to load a class that isn't on my classpath than using a classloader": no. clue's in the name Class + Loader

why would you want to, anyway?

georgemca at 2007-7-10 2:35:07 > top of Java-index,Java Essentials,Java Programming...
# 2
UrlClassLoader. But that's of course using a Classloader.
CeciNEstPasUnProgrammeura at 2007-7-10 2:35:07 > top of Java-index,Java Essentials,Java Programming...