我需要允许用户在运行时通过配置文件指定接口的实现,类似于这个问题:在命令行参数
中指定要使用的Java接口的实现然而,我的情况是不同的,在编译时实现是未知的,所以我将不得不使用反射来实例化类。我的问题是……我如何构建我的应用程序,使我的类可以看到新实现的.jar,以便在我调用:
时加载类:Class.forName(fileObject.getClassName()).newInstance()
?
注释是正确的;只要.jar文件在您的类路径中,您就可以加载该类。
我以前用过这样的东西:
public static MyInterface loadMyInterface( String userClass ) throws Exception
{
// Load the defined class by the user if it implements our interface
if ( MyInterface.class.isAssignableFrom( Class.forName( userClass ) ) )
{
return (MyInterface) Class.forName( userClass ).newInstance();
}
throw new Exception("Class "+userClass+" does not implement "+MyInterface.class.getName() );
}
其中String userClass
是配置文件中用户自定义的类名。
编辑
仔细想想,甚至可以在运行时加载用户指定的类(例如,在上传一个新类之后),使用如下方式:
public static void addToClassPath(String jarFile) throws IOException
{
URLClassLoader classLoader = (URLClassLoader) ClassLoader.getSystemClassLoader();
Class loaderClass = URLClassLoader.class;
try {
Method method = loaderClass.getDeclaredMethod("addURL", new Class[]{URL.class});
method.setAccessible(true);
method.invoke(classLoader, new Object[]{ new File(jarFile).toURL() });
} catch (Throwable t) {
t.printStackTrace();
throw new IOException( t );
}
}
我记得在SO的某个地方发现了使用反射的addURL()
调用(当然)。