如何找到扩展另一个抽象类的类?
目前我有这个:
public PluginFinder(ClassLoader cl, File f) throws MalformedURLException, ClassNotFoundException {
super(new URL[]{f.toURI().toURL()}, cl);
Class<?> jarClass = Class.forName("com.ngxdev.demoplugin.main.MainClass", true, this);
this.instance = new PluginParser(jarClass).instance;
}
它有效,但它是静态的,我需要找到&#34; com.ngxdev.demoplugin.main.MainClass&#34;没有指定它,因为位置可以是&#34; com.example.ExampleClass&#34;我所知道的一切。
我试过用:
Reflections reflections = new Reflections("my.project.prefix");
但我真的不知道如何使用它。