java类反射读取配置文件

2021/5/3 22:56:08

本文主要是介绍java类反射读取配置文件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

import java.io.FileReader;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Properties;

//通过反射运行配置文件
public class ReflectDemo7 {
    public static void main(String[] args) throws IOException, ClassNotFoundException, NoSuchMethodException, InvocationTargetException, IllegalAccessException {

        //Properties读取文件获取键值对
        Properties properties = new Properties();
        FileReader fileReader = new FileReader("Example1\\class.txt");
        properties.load(fileReader);
        fileReader.close();
        //获取值
        String className = properties.getProperty("className");
        String methodName = properties.getProperty("methodName");
        //执行方法
        Class<?> aClass = Class.forName(className);
        Method method = aClass.getMethod(methodName);
        method.invoke(aClass);
    }
}




这篇关于java类反射读取配置文件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程