Is it possible to know whether a Java class has been loaded, without attempting to load it? Class.forName attempts to load the class, but I don\'t want
Class.forName
You can use the findLoadedClass(String) method in ClassLoader. It returns null if the class is not loaded.