I've been using a URLClassLoader to load classes over a network but I was wondering if anyone has done this using just a straight ClassLoader. Also is the same thing done if the target URL passed to the URLClassLoader points to a class instead of a .jar file? I ask this because ive seen examples using a ClassLoader where the class has to be read into a byte[] and then passed into the define() method to create a Class object.
