我想动态加载一个实现接口的具体类。输入:具体类名。
我需要在这个具体类中调用一个方法,也就是说,我需要设置:
MyInterface myclass = new concreteClassName();
myclass.function();
我怎样才能做到这一点?
看一下class . forname (String)
String str = "Test$B"; //your full class name here instead of Test$B
A clazz = null; //change A to be your interface
try {
clazz = (A)Class.forName(str).newInstance(); //change A to be your interface
} catch (Exception e) {
//TODO: handle exceptions
e.printStackTrace();
}
if (clazz != null) {
clazz.foo();
}
你检查过了吗
try {
// Load class
Class<?> cls = Class.forName("my.package.ConcreteClass");
// Instantiate object from class using default constructor
my.package.ConcreteClass obj = (my.package.ConcreteClass) cls.newInstance();
// Execute method on it
obj.myMethod();
} catch (Exception e) {
throw new RuntimeException("Could not instantiate class", e);
}
和Class#forName
和Class#newInstance
各自的javadoc条目?
你应该实现你自己的ClassLoader