0

I want to do something like this:

  try {
    Class.forName( "your.fqdn.class.name" );
  } catch( ClassNotFoundException e ) {
  //my class isn't there!
}

However I need to do it far more quickly. Execution time of Class.forName(name) is about 200ms for me and this is not good enough.

Is there a faster way of doing the same thing?

Community
  • 1
  • 1
Aequitas
  • 1,975
  • 1
  • 21
  • 45

0 Answers0