在Java中,可以通过配置文件实现类的动态加载。以下是一个简单的步骤来实现这个功能:
className=com.example.MyClass
Properties
类加载配置文件,并获取类名:import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class DynamicClassLoading {
public static void main(String[] args) {
Properties properties = new Properties();
try (InputStream inputStream = DynamicClassLoading.class.getClassLoader().getResourceAsStream("config.properties")) {
properties.load(inputStream);
} catch (IOException e) {
e.printStackTrace();
}
String className = properties.getProperty("className");
System.out.println("Loading class: " + className);
}
}
Class.forName()
方法加载类,并创建实例:try {
Class<?> clazz = Class.forName(className);
Object instance = clazz.newInstance();
System.out.println("Created instance of: " + instance.getClass().getName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException e) {
e.printStackTrace();
}
MyClass
有一个名为doSomething()
的方法,可以这样调用它:try {
Method method = clazz.getMethod("doSomething");
method.invoke(instance);
} catch (NoSuchMethodException | InvocationTargetException | IllegalAccessException e) {
e.printStackTrace();
}
将上述代码片段组合在一起,就可以实现通过配置文件动态加载类并调用其方法的功能。请注意,这个示例仅适用于具有无参构造函数的类。如果类具有不同的构造函数,则需要使用clazz.getConstructor()
方法并传递相应的参数。